Skip to content

Commit 1b00ca2

Browse files
committed
tests: Bump dependency versions
1 parent f4f646a commit 1b00ca2

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ To avail of fixes in an unreleased version, please download a ZIP file
2121
In progress (unreleased)
2222
------------------------
2323

24+
* :gh:issue:`1287` tests: Bump dependencies
25+
2426

2527
v0.3.28 (2025-09-17)
2628
--------------------

tests/ansible/requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
paramiko==2.12.0; python_version <= '2.7'
2-
paramiko==3.5.0; python_version >= '3.6'
2+
paramiko==3.5.1; python_version >= '3.6' and python_version <= '3.8'
3+
paramiko==4.0.0; python_version >= '3.9'
34

45
# Incompatible with pip >= 72, due to removal of `setup.py test`:
56
# ModuleNotFoundError: No module named 'setuptools.command.test'
67
# https://github.com/pypa/setuptools/issues/4519
78
hdrhistogram==0.6.1
89

910
ncclient==0.6.13; python_version <= '2.7'
10-
ncclient==0.6.16; python_version > '2.7'
11+
ncclient==0.6.19; python_version >= '3.5'
1112

1213
PyYAML==3.11; python_version < '2.7'
13-
PyYAML==5.3.1; python_version >= '2.7' # Latest release (Jan 2021)
14+
PyYAML==5.4.1; python_version >= '2.7' and python_version <= '3.7'
15+
PyYAML==6.0.2; python_version >= '3.8'

tests/requirements.txt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
cffi==1.15.1; python_version < '3.8'
2-
cffi==1.17.1; python_version >= '3.8'
3-
41
coverage==5.5; python_version == '2.7'
52
coverage==6.2; python_version == '3.6'
63
coverage==7.2.7; python_version == '3.7'
7-
coverage==7.4.3; python_version >= '3.8'
4+
coverage==7.5.4; python_version == '3.8'
5+
coverage==7.10.6; python_version >= '3.9'
86

97
Django==1.11.29; python_version < '3.0'
108
Django==3.2.20; python_version >= '3.6'
119

1210
mock==3.0.5; python_version == '2.7'
13-
mock==5.1.0; python_version >= '3.6'
11+
mock==5.2.0; python_version >= '3.6'
1412

15-
pexpect==4.8
13+
pexpect==4.9
1614

17-
psutil==5.9.8
15+
psutil==6.1.1; python_version <= '2.7'
16+
psutil==7.1.0; python_version >= '3.6'
1817

1918
pytest==4.6.11; python_version == '2.7'
2019
pytest==7.0.1; python_version == '3.6'
2120
pytest==7.4.4; python_version == '3.7'
22-
pytest==8.0.2; python_version >= '3.8'
21+
pytest==8.3.5; python_version == '3.8'
22+
pytest==8.4.2; python_version >= '3.9'
2323

2424
subprocess32==3.5.4; python_version < '3.0'
2525
timeoutcontext==1.2.0
@@ -32,4 +32,5 @@ idna==2.7; python_version < '2.7'
3232

3333
virtualenv==20.15.1; python_version == '2.7'
3434
virtualenv==20.17.1; python_version == '3.6'
35-
virtualenv==20.25.1; python_version >= '3.7'
35+
virtualenv==20.26.6; python_version == '3.7'
36+
virtualenv==20.34.0; python_version >= '3.8'

tox.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# 2.7 <= 2.11 <= 2.16 <= 5.5 <= 1.11.29 <= 2.11.3 <= 20 <= 4.6.11 <= 3.28 <= 20.15²
1313
# 3.5 <= 2.11 <= 2.15 <= 5.5 <= 2.2.28 <= 2.11.3 <= 20 <= 5.9.5 <= 6.1.0 <= 3.28 <= 20.15²
1414
# 3.6 <= 2.11 <= 2.16 <= 6.2 <= 3.2.20 <= 3.0.3 <= 21 <= 7.0.1 <= 3.28 <= 20.17²
15-
# 3.7 <= 2.12 <= 2.17 <= 7.2.7 <= 3.2.20 <= 7.4.4 <= 4.8.0
15+
# 3.7 <= 2.12 <= 2.17 <= 7.2.7 <= 3.2.20 <= 7.4.4 <= 4.8.0 <= 20.26.6²
1616
# 3.8 <= 2.12
1717
# 3.9 <= 2.15
1818
# 3.10 <= 2.17
@@ -31,8 +31,10 @@
3131
# Python 3.12 removed deprecated httplib.HTTPSConnection() arguments.
3232
# https://github.com/ansible/ansible/pull/80751
3333
#
34-
# 2. Higher virtualenv versions cannot run under this Python version. They can
35-
# still generate virtual environments for it.
34+
# 2. Higher Virtualenv versions do not support this Python as *host* Python.
35+
# Virtualenv <= 20.21.1 supports creating virtualenvs with any *target* Python.
36+
# Virtualenv >= 20.22 supports creating virtualenvs with target Python >= 3.7.
37+
# https://virtualenv.pypa.io/en/latest/#compatibility
3638

3739
# Ansible Dependency
3840
# ================== ======================
@@ -88,7 +90,7 @@ deps =
8890
ans9: ansible~=9.0
8991
ans10: ansible~=10.0
9092
ans11: ansible~=11.0
91-
ans12: ansible>=12.0.0b2
93+
ans12: ansible~=12.0
9294
install_command =
9395
python -m pip --no-python-version-warning --disable-pip-version-check install {opts} {packages}
9496
commands_pre =

0 commit comments

Comments
 (0)