diff options
author | Abhijeet Kasurde <akasurde@redhat.com> | 2023-10-03 15:18:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 15:18:32 +0200 |
commit | ce3954ba74efe9a01428a5ccd7adbc8f7e5b75ca (patch) | |
tree | 7ed51de8ac2d162f6d0038babc0be777f7a01558 | |
parent | Bump `coverage.py` to v7.3.2 in `ansible-test` (#81844) (diff) | |
download | ansible-ce3954ba74efe9a01428a5ccd7adbc8f7e5b75ca.tar.xz ansible-ce3954ba74efe9a01428a5ccd7adbc8f7e5b75ca.zip |
Bump sanity test requirements for 3.12 (#81843)
7 files changed, 10 insertions, 10 deletions
diff --git a/lib/ansible/module_utils/urls.py b/lib/ansible/module_utils/urls.py index 1c904e0f98..4a462f5d43 100644 --- a/lib/ansible/module_utils/urls.py +++ b/lib/ansible/module_utils/urls.py @@ -129,13 +129,13 @@ if not HAS_SSLCONTEXT: try: from urllib3.contrib.pyopenssl import PyOpenSSLContext except Exception: - from requests.packages.urllib3.contrib.pyopenssl import PyOpenSSLContext + from requests.packages.urllib3.contrib.pyopenssl import PyOpenSSLContext # type: ignore[no-redef] HAS_URLLIB3_PYOPENSSLCONTEXT = True except Exception: # urllib3<1.15,>=1.6 try: try: - from urllib3.contrib.pyopenssl import ssl_wrap_socket + from urllib3.contrib.pyopenssl import ssl_wrap_socket # type: ignore[attr-defined] except Exception: from requests.packages.urllib3.contrib.pyopenssl import ssl_wrap_socket HAS_URLLIB3_SSL_WRAP_SOCKET = True diff --git a/test/lib/ansible_test/_data/requirements/sanity.ansible-doc.txt b/test/lib/ansible_test/_data/requirements/sanity.ansible-doc.txt index 2d4add19db..6680145976 100644 --- a/test/lib/ansible_test/_data/requirements/sanity.ansible-doc.txt +++ b/test/lib/ansible_test/_data/requirements/sanity.ansible-doc.txt @@ -1,5 +1,5 @@ # edit "sanity.ansible-doc.in" and generate with: hacking/update-sanity-requirements.py --test ansible-doc Jinja2==3.1.2 MarkupSafe==2.1.3 -packaging==23.1 +packaging==23.2 PyYAML==6.0.1 diff --git a/test/lib/ansible_test/_data/requirements/sanity.changelog.txt b/test/lib/ansible_test/_data/requirements/sanity.changelog.txt index 8f8b89540c..d763bad242 100644 --- a/test/lib/ansible_test/_data/requirements/sanity.changelog.txt +++ b/test/lib/ansible_test/_data/requirements/sanity.changelog.txt @@ -1,7 +1,7 @@ # edit "sanity.changelog.in" and generate with: hacking/update-sanity-requirements.py --test changelog antsibull-changelog==0.23.0 docutils==0.18.1 -packaging==23.1 +packaging==23.2 PyYAML==6.0.1 rstcheck==5.0.0 semantic-version==2.10.0 diff --git a/test/lib/ansible_test/_data/requirements/sanity.mypy.txt b/test/lib/ansible_test/_data/requirements/sanity.mypy.txt index 6efcbe96fd..f6a47fb08b 100644 --- a/test/lib/ansible_test/_data/requirements/sanity.mypy.txt +++ b/test/lib/ansible_test/_data/requirements/sanity.mypy.txt @@ -5,14 +5,14 @@ Jinja2==3.1.2 MarkupSafe==2.1.3 mypy==1.5.1 mypy-extensions==1.0.0 -packaging==23.1 +packaging==23.2 pycparser==2.21 tomli==2.0.1 types-backports==0.1.3 types-paramiko==3.3.0.0 types-PyYAML==6.0.12.12 -types-requests==2.31.0.6 +types-requests==2.31.0.7 types-setuptools==68.2.0.0 types-toml==0.10.8.7 -types-urllib3==1.26.25.14 typing_extensions==4.8.0 +urllib3==2.0.6 diff --git a/test/sanity/code-smell/package-data.requirements.txt b/test/sanity/code-smell/package-data.requirements.txt index 5440ff739e..ce0fb9cffe 100644 --- a/test/sanity/code-smell/package-data.requirements.txt +++ b/test/sanity/code-smell/package-data.requirements.txt @@ -4,7 +4,7 @@ build==1.0.3 docutils==0.18.1 Jinja2==3.1.2 MarkupSafe==2.1.3 -packaging==23.1 +packaging==23.2 pyproject_hooks==1.0.0 PyYAML==6.0.1 resolvelib==1.0.1 diff --git a/test/sanity/code-smell/pymarkdown.requirements.txt b/test/sanity/code-smell/pymarkdown.requirements.txt index 314cdab17e..f906e14001 100644 --- a/test/sanity/code-smell/pymarkdown.requirements.txt +++ b/test/sanity/code-smell/pymarkdown.requirements.txt @@ -6,4 +6,4 @@ PyYAML==6.0.1 tomli==2.0.1 toolz==0.12.0 typing_extensions==4.8.0 -wcwidth==0.2.6 +wcwidth==0.2.8 diff --git a/test/sanity/code-smell/update-bundled.requirements.txt b/test/sanity/code-smell/update-bundled.requirements.txt index 1d3860bb6d..53f1e43421 100644 --- a/test/sanity/code-smell/update-bundled.requirements.txt +++ b/test/sanity/code-smell/update-bundled.requirements.txt @@ -1,2 +1,2 @@ # edit "update-bundled.requirements.in" and generate with: hacking/update-sanity-requirements.py --test update-bundled -packaging==23.1 +packaging==23.2 |