Skip to content

Commit a4099d2

Browse files
committed
Fix dependency update
1 parent 38c4da0 commit a4099d2

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

requirements-dev.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
-r requirements.txt
22
-r requirements-test.txt
33
tox==4.32.0 ; python_version >= "3.10"
4-
tox==4.32.0 ; python_version < "3.10"
4+
tox==4.30.3 ; python_version < "3.10"
55
wheel==0.46.1
6-
Sphinx==9.0.4
6+
Sphinx==9.0.4 ; python_version >= "3.10"
7+
Sphinx==7.4.7 ; python_version < "3.10"
78
sphinx-rtd-theme==3.0.2
89
pypandoc==1.16.2
910
twine==6.2.0
10-
black==25.12.0
11+
black==25.12.0 ; python_version >= "3.10"
12+
black==25.11.0 ; python_version < "3.10"

requirements-test.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
pytest==9.0.2
1+
pytest==9.0.2 ; python_version >= "3.10"
2+
pytest==8.3.4 ; python_version < "3.10"
23
pytest-pep8==1.0.6
34
pytest-cov==7.0.0
45
pytest-aiohttp==1.1.0
5-
pytest-asyncio==1.3.0
6+
pytest-asyncio==1.3.0 ; python_version >= "3.10"
7+
pytest-asyncio==1.2.0 ; python_version < "3.10"
68
responses==0.25.8
79
pytest_httpserver >= 1.1.2

0 commit comments

Comments
 (0)