Upgrade pytest and jsonschema dependencies

This commit is contained in:
grossmj
2026-02-11 17:42:11 +08:00
parent 2c0f925d5f
commit 699ad62b54
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
-rrequirements.txt
pytest==8.4.2 # version 8.4.2 is the last one supporting Python 3.9
pytest==8.4.2; python_version == '3.9' # version 8.4.2 is the last one supporting Python 3.9
pytest==9.0.2; python_version >= '3.10'
pytest-timeout==2.4.0

View File

@@ -1,4 +1,5 @@
jsonschema>=4.25.1,<4.26 # version 4.25.1 is the last to support Python 3.9
jsonschema==4.25.1; python_version == '3.9' # version 4.25.1 is the last to support Python 3.9
jsonschema>=4.26.0,<4.27; python_version >= '3.10'
sentry-sdk>=2.52.0,<3 # optional dependency
psutil>=7.2.2
distro>=1.9.0