Skip to content

Commit 0cb4bbf

Browse files
authored
Freeze package versions in requirements-*.txt (#755)
This PR addresses the issue of potential breaking changes in our dependencies by freezing the current package versions in the requirements-*.txt files.
1 parent 462774b commit 0cb4bbf

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

Diff for: requirements-dev.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
-r requirements.txt
22
-r requirements-test.txt
3-
tox
4-
wheel
5-
sphinx>=2
6-
sphinx_rtd_theme
7-
pypandoc
8-
twine
9-
black>=24.10.0
3+
tox==4.24.1
4+
wheel==0.45.1
5+
Sphinx==7.4.7
6+
sphinx-rtd-theme==3.0.2
7+
pypandoc==1.15
8+
twine==6.1.0
9+
black==25.1.0

Diff for: requirements-test.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
pytest
2-
pytest-pep8
3-
pytest-cov
4-
pytest-aiohttp
5-
responses
1+
pytest==8.3.4
2+
pytest-pep8==1.0.6
3+
pytest-cov==6.0.0
4+
pytest-aiohttp==1.1.0
5+
responses==0.25.6
66
pytest_httpserver >= 1.1.2

Diff for: requirements.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
requests>=2.32.3,<3
22
urllib3>=2.0.5,<3
3-
aiohttp >=3.10.9
4-
future
3+
aiohttp >=3.10.9, <4
4+
future >= 1.0.0
55
pydantic >=2.0.3, <3
6-
aenum >= 3.1.11
7-
python_dateutil >= 2.5.3
8-
Deprecated
6+
aenum >= 3.1.11, <4
7+
python_dateutil >= 2.5.3, <3
8+
Deprecated>=1.2.18

0 commit comments

Comments
 (0)