mirror of https://github.com/ansible/ansible.git
ansible-test - Update venv management and sanity requirements (#83729)
* ansible-test - Update venv management * Upgrade from pip 24.0 to 24.2 * Omit `wheel` and `setuptools` from ansible-test managed virtual environments * Drop pre-release hacks * Update mypy requirements * Freeze sanity test requirements * Update sanity test configuration * Update sanity ignorespull/78142/merge
parent
0be66ed6dc
commit
717f1092e3
@ -0,0 +1,2 @@
|
|||||||
|
minor_changes:
|
||||||
|
- ansible-test - Updated the frozen requirements for all sanity tests.
|
@ -0,0 +1,3 @@
|
|||||||
|
minor_changes:
|
||||||
|
- ansible-test - Virtual environments created by ansible-test no longer include the ``wheel`` or ``setuptools`` packages.
|
||||||
|
- ansible-test - Upgrade ``pip`` used in ansible-test managed virtual environments from version 24.0 to 24.2.
|
@ -1,5 +1,5 @@
|
|||||||
# edit "sanity.ansible-doc.in" and generate with: hacking/update-sanity-requirements.py --test ansible-doc
|
# edit "sanity.ansible-doc.in" and generate with: hacking/update-sanity-requirements.py --test ansible-doc
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
packaging==24.0
|
packaging==24.1
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# edit "sanity.changelog.in" and generate with: hacking/update-sanity-requirements.py --test changelog
|
# edit "sanity.changelog.in" and generate with: hacking/update-sanity-requirements.py --test changelog
|
||||||
antsibull-changelog==0.26.0
|
antsibull-changelog==0.29.0
|
||||||
docutils==0.18.1
|
docutils==0.18.1
|
||||||
packaging==24.0
|
packaging==24.1
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
rstcheck==5.0.0
|
rstcheck==5.0.0
|
||||||
semantic-version==2.10.0
|
semantic-version==2.10.0
|
||||||
types-docutils==0.18.3
|
types-docutils==0.18.3
|
||||||
typing_extensions==4.10.0
|
typing_extensions==4.12.2
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# edit "sanity.import.plugin.in" and generate with: hacking/update-sanity-requirements.py --test import.plugin
|
# edit "sanity.import.plugin.in" and generate with: hacking/update-sanity-requirements.py --test import.plugin
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
# edit "sanity.import.in" and generate with: hacking/update-sanity-requirements.py --test import
|
# edit "sanity.import.in" and generate with: hacking/update-sanity-requirements.py --test import
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
# edit "sanity.integration-aliases.in" and generate with: hacking/update-sanity-requirements.py --test integration-aliases
|
# edit "sanity.integration-aliases.in" and generate with: hacking/update-sanity-requirements.py --test integration-aliases
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
# edit "sanity.mypy.in" and generate with: hacking/update-sanity-requirements.py --test mypy
|
# edit "sanity.mypy.in" and generate with: hacking/update-sanity-requirements.py --test mypy
|
||||||
cffi==1.16.0
|
cffi==1.17.0
|
||||||
cryptography==42.0.5
|
cryptography==43.0.0
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
mypy==1.9.0
|
mypy==1.11.1
|
||||||
mypy-extensions==1.0.0
|
mypy-extensions==1.0.0
|
||||||
packaging==24.0
|
packaging==24.1
|
||||||
pycparser==2.21
|
pycparser==2.22
|
||||||
tomli==2.0.1
|
tomli==2.0.1
|
||||||
types-backports==0.1.3
|
types-backports==0.1.3
|
||||||
types-paramiko==3.4.0.20240311
|
types-paramiko==3.4.0.20240423
|
||||||
types-PyYAML==6.0.12.20240311
|
types-PyYAML==6.0.12.20240724
|
||||||
types-requests==2.31.0.20240311
|
types-requests==2.32.0.20240712
|
||||||
types-setuptools==69.2.0.20240317
|
types-setuptools==71.1.0.20240806
|
||||||
types-toml==0.10.8.20240310
|
types-toml==0.10.8.20240310
|
||||||
typing_extensions==4.10.0
|
typing_extensions==4.12.2
|
||||||
urllib3==2.2.1
|
urllib3==2.2.2
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
# edit "sanity.pep8.in" and generate with: hacking/update-sanity-requirements.py --test pep8
|
# edit "sanity.pep8.in" and generate with: hacking/update-sanity-requirements.py --test pep8
|
||||||
pycodestyle==2.11.1
|
pycodestyle==2.12.1
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
# edit "sanity.pylint.in" and generate with: hacking/update-sanity-requirements.py --test pylint
|
# edit "sanity.pylint.in" and generate with: hacking/update-sanity-requirements.py --test pylint
|
||||||
astroid==3.1.0
|
astroid==3.2.4
|
||||||
dill==0.3.8
|
dill==0.3.8
|
||||||
isort==5.13.2
|
isort==5.13.2
|
||||||
mccabe==0.7.0
|
mccabe==0.7.0
|
||||||
platformdirs==4.2.0
|
platformdirs==4.2.2
|
||||||
pylint==3.1.0
|
pylint==3.2.6
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
tomli==2.0.1
|
tomlkit==0.13.0
|
||||||
tomlkit==0.12.4
|
|
||||||
typing_extensions==4.10.0
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# edit "sanity.runtime-metadata.in" and generate with: hacking/update-sanity-requirements.py --test runtime-metadata
|
# edit "sanity.runtime-metadata.in" and generate with: hacking/update-sanity-requirements.py --test runtime-metadata
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
voluptuous==0.14.2
|
voluptuous==0.15.2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# edit "sanity.validate-modules.in" and generate with: hacking/update-sanity-requirements.py --test validate-modules
|
# edit "sanity.validate-modules.in" and generate with: hacking/update-sanity-requirements.py --test validate-modules
|
||||||
antsibull-docs-parser==1.0.0
|
antsibull-docs-parser==1.0.0
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
voluptuous==0.14.2
|
voluptuous==0.15.2
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# edit "deprecated-config.requirements.in" and generate with: hacking/update-sanity-requirements.py --test deprecated-config
|
# edit "deprecated-config.requirements.in" and generate with: hacking/update-sanity-requirements.py --test deprecated-config
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
|
@ -1,17 +1,14 @@
|
|||||||
# edit "package-data.requirements.in" and generate with: hacking/update-sanity-requirements.py --test package-data
|
# edit "package-data.requirements.in" and generate with: hacking/update-sanity-requirements.py --test package-data
|
||||||
antsibull-changelog==0.26.0
|
antsibull-changelog==0.29.0
|
||||||
build==1.1.1
|
build==1.2.1
|
||||||
docutils==0.18.1
|
docutils==0.18.1
|
||||||
Jinja2==3.1.3
|
Jinja2==3.1.4
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
packaging==24.0
|
packaging==24.1
|
||||||
pyproject_hooks==1.0.0
|
pyproject_hooks==1.1.0
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
resolvelib==1.0.1
|
resolvelib==1.0.1
|
||||||
rstcheck==5.0.0
|
rstcheck==5.0.0
|
||||||
semantic-version==2.10.0
|
semantic-version==2.10.0
|
||||||
setuptools==66.1.0
|
|
||||||
tomli==2.0.1
|
|
||||||
types-docutils==0.18.3
|
types-docutils==0.18.3
|
||||||
typing_extensions==4.10.0
|
typing_extensions==4.12.2
|
||||||
wheel==0.43.0
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# edit "pymarkdown.requirements.in" and generate with: hacking/update-sanity-requirements.py --test pymarkdown
|
# edit "pymarkdown.requirements.in" and generate with: hacking/update-sanity-requirements.py --test pymarkdown
|
||||||
application_properties==0.8.2
|
application_properties==0.8.2
|
||||||
Columnar==1.4.1
|
Columnar==1.4.1
|
||||||
pymarkdownlnt==0.9.18
|
pymarkdownlnt==0.9.22
|
||||||
PyYAML==6.0.1
|
PyYAML==6.0.2
|
||||||
tomli==2.0.1
|
tomli==2.0.1
|
||||||
toolz==0.12.1
|
toolz==0.12.1
|
||||||
typing_extensions==4.10.0
|
typing_extensions==4.12.2
|
||||||
wcwidth==0.2.13
|
wcwidth==0.2.13
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
# edit "update-bundled.requirements.in" and generate with: hacking/update-sanity-requirements.py --test update-bundled
|
# edit "update-bundled.requirements.in" and generate with: hacking/update-sanity-requirements.py --test update-bundled
|
||||||
packaging==24.0
|
packaging==24.1
|
||||||
|
Loading…
Reference in New Issue