Skip to content

Commit ab198ff

Browse files
dependabot[bot]mr-c
authored andcommitted
build(deps): update pytest requirement from <8.5,>=6.2 to >=6.2,<9.1
Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@6.2.0...9.0.0) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent eec432c commit ab198ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
README = os.path.join(SETUP_DIR, "README.rst")
1010

1111
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
12-
pytest_runner: list[str] = ["pytest < 9", "pytest-runner"] if needs_pytest else []
12+
pytest_runner: list[str] = ["pytest < 10", "pytest-runner"] if needs_pytest else []
1313

1414
USE_MYPYC = False
1515
# To compile with mypyc, a mypyc checkout must be present on the PYTHONPATH
@@ -95,7 +95,7 @@
9595
"docs": [
9696
"sphinx >= 2.2",
9797
"sphinx-rtd-theme >= 1",
98-
"pytest < 9",
98+
"pytest < 10",
9999
"sphinx-autoapi",
100100
"sphinx-autodoc-typehints",
101101
"sphinxcontrib-autoprogram",

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytest >= 6.2, < 8.5
1+
pytest >= 6.2, < 9.1
22
pytest-cov
33
pytest-xdist
44
setuptools

0 commit comments

Comments
 (0)