Skip to content

Commit

Permalink
Bump pytest from 7.4.4 to 8.2.0 in /examples/python-*
Browse files Browse the repository at this point in the history
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.4.4 to 8.2.0.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.4.4...8.2.0)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and mengdaming committed Apr 29, 2024
1 parent 84203af commit be78e3e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
# Log files
*.log

# MacOS generated files
.DS_Store

# Created by https://www.toptal.com/developers/gitignore/api/go,intellij
# Edit at https://www.toptal.com/developers/gitignore?templates=go,intellij

Expand Down
3 changes: 3 additions & 0 deletions examples/python-bazel/.bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ test --test_output=errors
# creating (possibly empty) __init__.py files and adding them to the srcs of
# Python targets as required.
build --incompatible_default_to_explicit_init_py

# Disable bzlmod for now, until it's officially released
common --noenable_bzlmod
2 changes: 1 addition & 1 deletion examples/python-bazel/.bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.0
7.1.1
2 changes: 1 addition & 1 deletion examples/python-bazel/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bazel-*/
bazel-*
pytest/
.pytest_cache/
12 changes: 6 additions & 6 deletions examples/python-bazel/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "rules_python",
sha256 = "94750828b18044533e98a129003b6a68001204038dc4749f40b195b24c38f49f",
strip_prefix = "rules_python-0.21.0",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.21.0/rules_python-0.21.0.tar.gz",
sha256 = "c68bdc4fbec25de5b5493b8819cfc877c4ea299c0dcb15c244c5a00208cde311",
strip_prefix = "rules_python-0.31.0",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.31.0/rules_python-0.31.0.tar.gz",
)

http_archive(
name = "rules_python_pytest",
sha256 = "334a0ac91a0d6a87df499cdf9b70b525754dc8ca4873763116d67177f759389f",
strip_prefix = "rules_python_pytest-1.0.2",
url = "https://github.com/caseyduquettesc/rules_python_pytest/archive/v1.0.2.tar.gz",
sha256 = "8b82935e16f7b28e3711a68ae5f88f44d8685ccd906b869f7721fdd4c32f2369",
strip_prefix = "rules_python_pytest-1.1.0",
url = "https://github.com/caseyduquettesc/rules_python_pytest/releases/download/v1.1.0/rules_python_pytest-v1.1.0.tar.gz",
)

load("@rules_python//python:repositories.bzl", "py_repositories")
Expand Down
2 changes: 1 addition & 1 deletion examples/python-bazel/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytest == 7.0.1; python_version < '3.7'
pytest == 7.4.4; python_version in '3.7'
pytest == 8.1.1; python_version >= '3.8'
pytest == 8.2.0; python_version >= '3.8'
2 changes: 1 addition & 1 deletion examples/python-pytest/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytest == 7.0.1; python_version < '3.7'
pytest == 7.4.4; python_version in '3.7'
pytest == 8.1.1; python_version >= '3.8'
pytest == 8.2.0; python_version >= '3.8'

0 comments on commit be78e3e

Please sign in to comment.