Skip to content

Commit ea37161

Browse files
fix(deps): update dependency pytest to v9
1 parent 78dc820 commit ea37161

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ flask = [
5050
dev = [
5151
# pytest 9 requires Python >=3.10; pytest 9.0.3 fixes CVE-2025-71176
5252
"pytest >=9.0.3; python_version >= '3.10'",
53-
"pytest >=7.4.0,<9; python_version < '3.10'",
53+
"pytest >=9.0.3,<10; python_version < '3.10'",
5454
"pytest-cov >=4.1.0",
5555
"pytest-django >=4.5.2",
5656
"mypy >=1.5.0",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pydantic>=2.0.0,<3.0.0
2424
# pytest 9 requires Python >=3.10; keep <9 for Python 3.9 (pytest 9 dropped 3.9 support)
2525
# CVE-2025-71176 is fixed in 9.0.3 (only available for Python >=3.10)
2626
pytest>=9.0.3; python_version >= "3.10"
27-
pytest>=7.4.0,<9; python_version < "3.10"
27+
pytest>=9.0.3,<10; python_version < "3.10"
2828
pytest-django>=4.5.2
2929
pytest-asyncio>=0.21.1
3030
pytest-cov>=7.0.0

0 commit comments

Comments
 (0)