Skip to content

Commit 23fb5b2

Browse files
committed
tests(tox): update python dependencies
Bump all tox and linters dependencies to their latest versions.
1 parent a61a4f5 commit 23fb5b2

File tree

2 files changed

+76
-76
lines changed

2 files changed

+76
-76
lines changed

requirements.txt

+57-57
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
1-
ansible-base==2.10.8
2-
Babel==2.9.1
3-
black==23.3.0
4-
boto3==1.26.148
5-
botocore==1.29.148
6-
cachetools==5.3.1
7-
certifi==2023.7.22
8-
cfgv==3.3.1
9-
chardet==5.2.0
10-
charset-normalizer==3.2.0
11-
click==8.1.6
12-
colorama==0.4.6
13-
coverage==7.2.7
14-
cryptography==41.0.3
15-
distlib==0.3.7
16-
dnspython==2.1.0
17-
docker==6.1.3
18-
exceptiongroup==1.1.2
19-
filelock==3.12.2
20-
httplib2==0.20.2
21-
identify==2.5.26
22-
idna==3.4
23-
iniconfig==2.0.0
24-
Jinja2==3.0.3
25-
jmespath==1.0.1
26-
MarkupSafe==2.1.3
27-
moto==4.1.11
28-
mypy-extensions==1.0.0
29-
netaddr==0.8.0
30-
nodeenv==1.8.0
31-
packaging==23.1
32-
pathspec==0.11.2
33-
platformdirs==3.10.0
34-
pluggy==1.2.0
35-
pre-commit==3.3.3
36-
pycryptodomex==3.11.0
37-
pyparsing==2.4.7
38-
pyproject-api==1.5.3
39-
pytest==7.3.1
40-
pytest-cov==4.1.0
41-
pytest-pythonpath==0.7.3
42-
python-apt==2.4.0+ubuntu2
43-
python-dateutil==2.8.2
44-
pytz==2022.1
45-
PyYAML==6.0.1
46-
requests==2.31.0
47-
responses==0.23.3
48-
s3transfer==0.6.1
49-
six==1.16.0
50-
tomli==2.0.1
51-
tox==4.7.0
52-
types-PyYAML==6.0.12.11
53-
urllib3==1.26.16
54-
virtualenv==20.24.2
55-
websocket-client==1.6.1
56-
Werkzeug==2.3.6
57-
xmltodict==0.13.0
1+
ansible-base==2.*
2+
Babel==2.*
3+
black==25.*
4+
boto3==1.*
5+
botocore==1.*
6+
cachetools==5.*
7+
certifi==2025.*
8+
cfgv==3.*
9+
chardet==5.*
10+
charset-normalizer==3.*
11+
click==8.*
12+
colorama==0.*
13+
coverage==7.*
14+
cryptography==44.*
15+
distlib==0.*
16+
dnspython==2.*
17+
docker==7.*
18+
exceptiongroup==1.*
19+
filelock==3.*
20+
httplib2==0.*
21+
identify==2.*
22+
idna==3.*
23+
iniconfig==2.*
24+
Jinja2==3.*
25+
jmespath==1.*
26+
MarkupSafe==3.*
27+
moto==5.*
28+
mypy-extensions==1.*
29+
netaddr==1.*
30+
nodeenv==1.*
31+
packaging==24.*
32+
pathspec==0.*
33+
platformdirs==4.*
34+
pluggy==1.*
35+
pre-commit==4.*
36+
pycryptodomex==3.*
37+
pyparsing==3.*
38+
pyproject-api==1.*
39+
pytest==8.*
40+
pytest-cov==6.*
41+
pytest-pythonpath==0.*
42+
python-apt==2.*
43+
python-dateutil==2.*
44+
pytz==2025.*
45+
PyYAML==6.*
46+
requests==2.*
47+
responses==0.*
48+
s3transfer==0.*
49+
six==1.*
50+
tomli==2.*
51+
tox==4.*
52+
types-PyYAML==6.*
53+
urllib3==2.*
54+
virtualenv==20.*
55+
websocket-client==1.*
56+
Werkzeug==3.*
57+
xmltodict==0.*

tox.ini

+19-19
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ skipsdist = True
88
basepython = python3
99
skip_install = true
1010
deps =
11-
botocore==1.29.148
12-
boto3==1.26.148
13-
moto==4.1.11
14-
pytest==7.3.1
15-
pytest-cov==4.1.0
16-
pytest-pythonpath==0.7.3
17-
docker==6.1.3
11+
botocore==1.*
12+
boto3==1.*
13+
moto==5.*
14+
pytest==8.*
15+
pytest-cov==6.*
16+
pytest-pythonpath==0.*
17+
docker==7.*
1818
commands =
1919
coverage run -m pytest tests/unit --cov package
2020

@@ -23,7 +23,7 @@ commands =
2323
basepython = python3
2424
skip_install = true
2525
deps =
26-
black==23.3.0
26+
black==25.*
2727
commands =
2828
black package/ --check
2929

@@ -32,31 +32,31 @@ commands =
3232
basepython = python3
3333
skip_install = true
3434
deps =
35-
flake8==6.0.0
36-
flake8-colors==0.1.9
37-
flake8-docstrings==1.7.0
38-
flake8-import-order==0.18.2
39-
flake8-typing-imports==1.14.0
40-
pep8-naming==0.13.3
41-
pycodestyle==2.10.0
42-
importlib_metadata==6.6.0
35+
flake8==7.*
36+
flake8-colors==0.*
37+
flake8-docstrings==1.*
38+
flake8-import-order==0.*
39+
flake8-typing-imports==1.*
40+
pep8-naming==0.*
41+
pycodestyle==2.*
42+
importlib_metadata==8.*
4343
commands =
4444
flake8 package/
4545

4646
[testenv:pylint]
4747
basepython = python3
4848
skip_install = true
4949
deps =
50-
pyflakes==3.0.1
51-
pylint==2.17.4
50+
pyflakes==3.*
51+
pylint==3.*
5252
commands =
5353
pylint package/ --rcfile=tests/sanity/.pylintrc
5454

5555
[testenv:mypy]
5656
basepython = python3
5757
skip_install = true
5858
deps =
59-
mypy==1.3.0
59+
mypy==1.*
6060
commands =
6161
mypy --ignore-missing-imports package/
6262

0 commit comments

Comments
 (0)