ansible-core 2.20.0b2__py3-none-any.whl → 2.20.0rc2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansible-core might be problematic. Click here for more details.
- ansible/executor/process/worker.py +17 -11
- ansible/executor/task_queue_manager.py +43 -1
- ansible/galaxy/collection/__init__.py +7 -4
- ansible/galaxy/dependency_resolution/__init__.py +10 -9
- ansible/galaxy/dependency_resolution/dataclasses.py +86 -60
- ansible/galaxy/dependency_resolution/providers.py +32 -18
- ansible/galaxy/dependency_resolution/versioning.py +2 -4
- ansible/module_utils/ansible_release.py +1 -1
- ansible/module_utils/six/__init__.py +0 -8
- ansible/plugins/connection/psrp.py +11 -6
- ansible/release.py +1 -1
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/METADATA +2 -2
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/RECORD +40 -40
- ansible_test/_data/completion/docker.txt +7 -7
- ansible_test/_data/requirements/ansible-test.txt +1 -1
- ansible_test/_data/requirements/ansible.txt +1 -1
- ansible_test/_data/requirements/sanity.ansible-doc.txt +2 -2
- ansible_test/_data/requirements/sanity.changelog.txt +1 -1
- ansible_test/_data/requirements/sanity.import.plugin.txt +2 -2
- ansible_test/_data/requirements/sanity.import.txt +1 -1
- ansible_test/_data/requirements/sanity.integration-aliases.txt +1 -1
- ansible_test/_data/requirements/sanity.pylint.txt +5 -5
- ansible_test/_data/requirements/sanity.runtime-metadata.txt +1 -1
- ansible_test/_data/requirements/sanity.validate-modules.txt +2 -2
- ansible_test/_data/requirements/sanity.yamllint.txt +1 -1
- ansible_test/_internal/commands/sanity/pylint.py +11 -0
- ansible_test/_internal/coverage_util.py +1 -1
- ansible_test/_internal/python_requirements.py +1 -1
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py +48 -45
- ansible_test/_util/controller/sanity/pylint/plugins/string_format.py +9 -7
- ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py +11 -10
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/WHEEL +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/licenses/COPYING +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/licenses/licenses/Apache-License.txt +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/licenses/licenses/BSD-3-Clause.txt +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/licenses/licenses/MIT-license.txt +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/licenses/licenses/PSF-license.txt +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/licenses/licenses/simplified_bsd.txt +0 -0
- {ansible_core-2.20.0b2.dist-info → ansible_core-2.20.0rc2.dist-info}/top_level.txt +0 -0
|
@@ -11,8 +11,7 @@ from ansible.module_utils.compat.version import LooseVersion
|
|
|
11
11
|
from ansible.utils.version import SemanticVersion
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
def is_pre_release(version):
|
|
15
|
-
# type: (str) -> bool
|
|
14
|
+
def is_pre_release(version: str) -> bool:
|
|
16
15
|
"""Figure out if a given version is a pre-release."""
|
|
17
16
|
try:
|
|
18
17
|
return SemanticVersion(version).is_prerelease
|
|
@@ -20,8 +19,7 @@ def is_pre_release(version):
|
|
|
20
19
|
return False
|
|
21
20
|
|
|
22
21
|
|
|
23
|
-
def meets_requirements(version, requirements):
|
|
24
|
-
# type: (str, str) -> bool
|
|
22
|
+
def meets_requirements(version: str, requirements: str) -> bool:
|
|
25
23
|
"""Verify if a given version satisfies all the requirements.
|
|
26
24
|
|
|
27
25
|
Supported version identifiers are:
|
|
@@ -33,14 +33,6 @@ import operator
|
|
|
33
33
|
import sys
|
|
34
34
|
import types
|
|
35
35
|
|
|
36
|
-
from ansible.module_utils.common import warnings as _warnings
|
|
37
|
-
|
|
38
|
-
_warnings.deprecate(
|
|
39
|
-
msg="The `ansible.module_utils.six` module is deprecated.",
|
|
40
|
-
help_text="Use the Python standard library equivalent instead.",
|
|
41
|
-
version="2.24",
|
|
42
|
-
)
|
|
43
|
-
|
|
44
36
|
# The following makes it easier for us to script updates of the bundled code. It is not part of
|
|
45
37
|
# upstream six
|
|
46
38
|
_BUNDLED_METADATA = {"pypi_name": "six", "version": "1.17.0"}
|
|
@@ -331,7 +331,7 @@ try:
|
|
|
331
331
|
from pypsrp.host import PSHost, PSHostUserInterface
|
|
332
332
|
from pypsrp.powershell import PowerShell, RunspacePool
|
|
333
333
|
from pypsrp.wsman import WSMan
|
|
334
|
-
from requests.exceptions import ConnectionError, ConnectTimeout
|
|
334
|
+
from requests.exceptions import ConnectionError, ConnectTimeout, ReadTimeout
|
|
335
335
|
except ImportError as err:
|
|
336
336
|
HAS_PYPSRP = False
|
|
337
337
|
PYPSRP_IMP_ERR = err
|
|
@@ -479,11 +479,16 @@ class Connection(ConnectionBase):
|
|
|
479
479
|
pwsh_in_data = in_data
|
|
480
480
|
display.vvv(u"PSRP: EXEC %s" % script, host=self._psrp_host)
|
|
481
481
|
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
482
|
+
try:
|
|
483
|
+
rc, stdout, stderr = self._exec_psrp_script(
|
|
484
|
+
script=script,
|
|
485
|
+
input_data=pwsh_in_data.splitlines() if pwsh_in_data else None,
|
|
486
|
+
arguments=script_args,
|
|
487
|
+
)
|
|
488
|
+
except ReadTimeout as e:
|
|
489
|
+
raise AnsibleConnectionFailure(
|
|
490
|
+
"HTTP read timeout during PSRP script execution"
|
|
491
|
+
) from e
|
|
487
492
|
return rc, stdout, stderr
|
|
488
493
|
|
|
489
494
|
def put_file(self, in_path: str, out_path: str) -> None:
|
ansible/release.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ansible-core
|
|
3
|
-
Version: 2.20.
|
|
3
|
+
Version: 2.20.0rc2
|
|
4
4
|
Summary: Radically simple IT automation
|
|
5
5
|
Author: Ansible Project
|
|
6
6
|
Project-URL: Homepage, https://ansible.com/
|
|
@@ -37,7 +37,7 @@ Requires-Dist: jinja2>=3.1.0
|
|
|
37
37
|
Requires-Dist: PyYAML>=5.1
|
|
38
38
|
Requires-Dist: cryptography
|
|
39
39
|
Requires-Dist: packaging
|
|
40
|
-
Requires-Dist: resolvelib<2.0.0,>=0.
|
|
40
|
+
Requires-Dist: resolvelib<2.0.0,>=0.8.0
|
|
41
41
|
Dynamic: license-file
|
|
42
42
|
|
|
43
43
|
[](https://pypi.org/project/ansible-core)
|
|
@@ -3,7 +3,7 @@ ansible/__main__.py,sha256=24j-7-YT4lZ2fmV80JD-VRoYBnxR7YoP_VP-orJtDt0,796
|
|
|
3
3
|
ansible/constants.py,sha256=qef45QpHi-yFFMvllvNKmqFpXdKKr304e5fEZnjgwZc,7989
|
|
4
4
|
ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
|
|
5
5
|
ansible/keyword_desc.yml,sha256=i3d_5dCS8Qsy5DNyrZnPHupkFnj6U3onpgEe2VqS8AY,7273
|
|
6
|
-
ansible/release.py,sha256=
|
|
6
|
+
ansible/release.py,sha256=JuWdZRXiuGpgugIPKbgIah7MPpn-jtIoGJ3i7fEHCWQ,843
|
|
7
7
|
ansible/_internal/__init__.py,sha256=pLZlT_Cm_fKBKDcWB5g0KZt2XWKZGlC7sfytkuUTbJU,2186
|
|
8
8
|
ansible/_internal/_collection_proxy.py,sha256=Dm7iePwbX9fHPCYsadPLek47eiYSJSQkfcmSWHI8kr8,1154
|
|
9
9
|
ansible/_internal/_display_utils.py,sha256=2dOknOQpt_GW2AkoMUJxPvmQUCAVYv911KwX6Dwrh0c,5651
|
|
@@ -106,7 +106,7 @@ ansible/executor/play_iterator.py,sha256=GiYqzHSNGokz-xJ-R40z_Yo8mBNVTdKwUwZFObo
|
|
|
106
106
|
ansible/executor/playbook_executor.py,sha256=r4KKmo9c5Nq2ddLffKVvTpg5Pfmc-oX5CF63k_khbsA,14270
|
|
107
107
|
ansible/executor/stats.py,sha256=Rw-Q73xYvXnYOt-LJFnHAR03NvVR3ESgbMkHnVGhIPI,3180
|
|
108
108
|
ansible/executor/task_executor.py,sha256=1lvghGHj9nCSd4735kJUr2Pguq-gkE-k-7Oa-3CUbJE,61701
|
|
109
|
-
ansible/executor/task_queue_manager.py,sha256=
|
|
109
|
+
ansible/executor/task_queue_manager.py,sha256=V1heXu0xSi0hJVU2IEVWVYNobyt0mNoQl6DS3hIb2OA,20258
|
|
110
110
|
ansible/executor/task_result.py,sha256=e73P110j8hcw9wv8O7p-z6St5VIvyP6iOV4cW4sswV8,10254
|
|
111
111
|
ansible/executor/discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
ansible/executor/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -125,13 +125,13 @@ ansible/executor/powershell/psrp_put_file.ps1,sha256=8dIRjLNrji7_mjbG8-7lzV7WUuj
|
|
|
125
125
|
ansible/executor/powershell/winrm_fetch_file.ps1,sha256=wOgnMGFwNhq9c_-8kuGBNchGj69R0Udv-am39M3BEDw,979
|
|
126
126
|
ansible/executor/powershell/winrm_put_file.ps1,sha256=4qsc-GlqC3Z0E3fQSXkV6oMSVzxsS13ZwTXrx7krlgU,834
|
|
127
127
|
ansible/executor/process/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
|
128
|
-
ansible/executor/process/worker.py,sha256=
|
|
128
|
+
ansible/executor/process/worker.py,sha256=33B0FM5Om6BNIr-hA1es9q6yWKOu8Tlm26AdIM8DqV4,9546
|
|
129
129
|
ansible/galaxy/__init__.py,sha256=4yfCrbwz9fW-HABMhKPF0ko9_vLz7EMd9c-zg2tfqWU,2497
|
|
130
130
|
ansible/galaxy/api.py,sha256=LkuRnsfP2tYIohsDyVSCvpXAPgWaIEb0KawhriHrFXg,37845
|
|
131
131
|
ansible/galaxy/role.py,sha256=EiICN3STH3UwOQ-nr1wLdKoc0lpwQJm2rV-7GzhmMPo,19693
|
|
132
132
|
ansible/galaxy/token.py,sha256=EhSml-RGVtx7QjIo3ctHqUlMWdmJTGujK0RlWQmFPjw,6780
|
|
133
133
|
ansible/galaxy/user_agent.py,sha256=_Vr4ZJV8HNXhSbhw_dvUr378OjFdyhtLRHyywCjGU6g,760
|
|
134
|
-
ansible/galaxy/collection/__init__.py,sha256=
|
|
134
|
+
ansible/galaxy/collection/__init__.py,sha256=W9GBaD_YEQ1o83ZNQKp0eKpFoWsqnFMoeOVypL3jGTg,78177
|
|
135
135
|
ansible/galaxy/collection/concrete_artifact_manager.py,sha256=qFCfDA0geM7jPlGjS1XlA1-AhUuJ89thxuvOneqQgcQ,29246
|
|
136
136
|
ansible/galaxy/collection/galaxy_api_proxy.py,sha256=ir_JnTxH5CTvmgnswPkaqbEgMEgaZzW3F11t_NrhWsc,7805
|
|
137
137
|
ansible/galaxy/collection/gpg.py,sha256=m4_AtZPZyM_D72ARZqAKa-Her9XWICb4ie6KcEh52M8,7540
|
|
@@ -197,13 +197,13 @@ ansible/galaxy/data/network/terminal_plugins/example.py.j2,sha256=3GD0yAiI0sqO1H
|
|
|
197
197
|
ansible/galaxy/data/network/tests/inventory,sha256=D_lKLzrl-huN0pk-v0UvwKojTjsegmBHnkNuxFYxBVc,43
|
|
198
198
|
ansible/galaxy/data/network/tests/test.yml.j2,sha256=_PIRgn2D8RCeBmiHDxpg2H4GN5yB4gnJMaAS9a8V_fA,231
|
|
199
199
|
ansible/galaxy/data/network/vars/main.yml.j2,sha256=3I4QQOFgSN3CSJ2C1qRFPeRVv23Sewed5FYvwyfUF3Q,68
|
|
200
|
-
ansible/galaxy/dependency_resolution/__init__.py,sha256=
|
|
201
|
-
ansible/galaxy/dependency_resolution/dataclasses.py,sha256=
|
|
200
|
+
ansible/galaxy/dependency_resolution/__init__.py,sha256=ZH4S4PzZTWdZAQuLt8U0Cc0VnCN1ja1ATlT5KlizZDA,1967
|
|
201
|
+
ansible/galaxy/dependency_resolution/dataclasses.py,sha256=ZpzpB_Um8zfDUItt0bQQAJHvY3giTV6MxGMWGmkA4V8,24740
|
|
202
202
|
ansible/galaxy/dependency_resolution/errors.py,sha256=t9RSyjCNaeB9ipzW_UmZA96SDHlMh0v5IsqbN1L_LQ4,697
|
|
203
|
-
ansible/galaxy/dependency_resolution/providers.py,sha256=
|
|
203
|
+
ansible/galaxy/dependency_resolution/providers.py,sha256=WnE72gTGGZYrvSXzPqWrje6fWCuBKQzZ5QXxS-D3huE,19310
|
|
204
204
|
ansible/galaxy/dependency_resolution/reporters.py,sha256=HKYT0lf6sihCQ2EheYD07m6mZ5P69l1pLYBjx8Vhk-k,3389
|
|
205
205
|
ansible/galaxy/dependency_resolution/resolvers.py,sha256=NUtKTwIBMegoMkfhbxKA_COF0bSsXMCLkp8cqI0ZKGA,623
|
|
206
|
-
ansible/galaxy/dependency_resolution/versioning.py,sha256=
|
|
206
|
+
ansible/galaxy/dependency_resolution/versioning.py,sha256=2BdHxm_UHGT2KYbZ_e1aUsHeAK5elWs-FdeYLm_yBKw,1700
|
|
207
207
|
ansible/inventory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
208
|
ansible/inventory/data.py,sha256=Hy4-36CWcKEWvTm55fLw888hjmYvmGcQN0myIZRex5A,10481
|
|
209
209
|
ansible/inventory/group.py,sha256=x6tPDWgWjpIuO82Jr3Rf0L0P_w4XZZdGS7dF3q15Y3Q,9614
|
|
@@ -212,7 +212,7 @@ ansible/inventory/host.py,sha256=cZw906LeMYe6oF3ZxW6K2HWoW2Qc0jxHssg_C8cRumE,493
|
|
|
212
212
|
ansible/inventory/manager.py,sha256=IiODOOpm5iGpAHn5Sjap-_XTX0pZsXrQCevEaFNF_Sc,31743
|
|
213
213
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
214
|
ansible/module_utils/_text.py,sha256=MjBVvIttHxQbicW6EY9F0B7GTbhjyiVDNt92fCZnQOw,1207
|
|
215
|
-
ansible/module_utils/ansible_release.py,sha256=
|
|
215
|
+
ansible/module_utils/ansible_release.py,sha256=JuWdZRXiuGpgugIPKbgIah7MPpn-jtIoGJ3i7fEHCWQ,843
|
|
216
216
|
ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
|
|
217
217
|
ansible/module_utils/basic.py,sha256=GsM5pubhLqRjdXE21LxdbbzOgRDrQm6a9bJ-_-kHHSI,90082
|
|
218
218
|
ansible/module_utils/connection.py,sha256=5RE7BmO58yvutG4Z1sVNsb1Km9ea1hA37HRcPuSJxFA,7575
|
|
@@ -387,7 +387,7 @@ ansible/module_utils/powershell/Ansible.ModuleUtils.PrivilegeUtil.psm1,sha256=1u
|
|
|
387
387
|
ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1,sha256=TX70j9dlg_SGVcb2HrHxakrkZzsyxPtaIeKaRevgy54,3639
|
|
388
388
|
ansible/module_utils/powershell/Ansible.ModuleUtils.WebRequest.psm1,sha256=4Wb0K_GO8maVpQYpdDBrUvl7YgkReeunXSNM1N6nq74,19182
|
|
389
389
|
ansible/module_utils/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
|
-
ansible/module_utils/six/__init__.py,sha256=
|
|
390
|
+
ansible/module_utils/six/__init__.py,sha256=R8WpTF9a4x8RcBnCbS4StADOgbh-sCncsQkvQdik78w,35132
|
|
391
391
|
ansible/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
392
392
|
ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3859
|
|
393
393
|
ansible/modules/apt.py,sha256=267kolDkjiXbO80Oum2wrM96pQQJLHk3NROTe2fCF8w,63056
|
|
@@ -552,7 +552,7 @@ ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42
|
|
|
552
552
|
ansible/plugins/connection/__init__.py,sha256=2pjLkoi6lpjebgqyWqkl4rAlBTmHDWlU1McVMsnRx1E,19456
|
|
553
553
|
ansible/plugins/connection/local.py,sha256=4Ebuo-qkDE7lz0CtSYPHjQ_2ofRfRt8PFQ928M_grdk,12041
|
|
554
554
|
ansible/plugins/connection/paramiko_ssh.py,sha256=F6sjILG7nnC4cka-7kQotBcT_1yzU4WeaOTMKa3-OUQ,27681
|
|
555
|
-
ansible/plugins/connection/psrp.py,sha256=
|
|
555
|
+
ansible/plugins/connection/psrp.py,sha256=9aTA3XMpmVHwo0cQCK4FWswZP7t6FYZ2JzCW9VMXm_A,30847
|
|
556
556
|
ansible/plugins/connection/ssh.py,sha256=lYNbCaPB1AVs6E7_315AjCU9wyFDJZhgVkYOkVkr8wU,71589
|
|
557
557
|
ansible/plugins/connection/winrm.py,sha256=lsEE0b-J7tpmLDpWnyOurEOoqXgOWGbHEVQkG4Xbss4,38390
|
|
558
558
|
ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -790,16 +790,16 @@ ansible/vars/hostvars.py,sha256=cRK_4dssUwIN4aDxxYXEj7KzTazrykQ4PbJotne5oJc,4364
|
|
|
790
790
|
ansible/vars/manager.py,sha256=bsh_Ie5qSPxySkpxtz37n3uXaPcC4bDbDHN8tcSf4xo,28306
|
|
791
791
|
ansible/vars/plugins.py,sha256=Ry0wY-Y7lMlQgowItFngE6EjP_6sFcUEjvS0tGocweg,3127
|
|
792
792
|
ansible/vars/reserved.py,sha256=NgxlMBm_tloqDVb5TEX4eGhpYsz_AO6-Fmyi3kJpIFk,3107
|
|
793
|
-
ansible_core-2.20.
|
|
794
|
-
ansible_core-2.20.
|
|
795
|
-
ansible_core-2.20.
|
|
796
|
-
ansible_core-2.20.
|
|
797
|
-
ansible_core-2.20.
|
|
798
|
-
ansible_core-2.20.
|
|
793
|
+
ansible_core-2.20.0rc2.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
794
|
+
ansible_core-2.20.0rc2.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
|
795
|
+
ansible_core-2.20.0rc2.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
|
|
796
|
+
ansible_core-2.20.0rc2.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
|
|
797
|
+
ansible_core-2.20.0rc2.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
|
|
798
|
+
ansible_core-2.20.0rc2.dist-info/licenses/licenses/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
|
|
799
799
|
ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
|
|
800
800
|
ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
801
801
|
ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
802
|
-
ansible_test/_data/completion/docker.txt,sha256=
|
|
802
|
+
ansible_test/_data/completion/docker.txt,sha256=X0dumcH7_1ezXvOoTc8U9G4N4dTvERUWU0RZ0a17UUk,685
|
|
803
803
|
ansible_test/_data/completion/network.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
804
804
|
ansible_test/_data/completion/remote.txt,sha256=GQWNAYsNp1KaHSHvWnWDMmQe5eLe_ZsHgls39rRaofw,972
|
|
805
805
|
ansible_test/_data/completion/windows.txt,sha256=Ru17yTPK9H4ygz4J5a7wRM9Rqs_HVaULxRmwBJvFJ24,297
|
|
@@ -816,30 +816,30 @@ ansible_test/_data/playbooks/windows_hosts_prepare.yml,sha256=8pGvZKnoRmH6UbXhB0
|
|
|
816
816
|
ansible_test/_data/playbooks/windows_hosts_restore.ps1,sha256=uFtxU7p2fIDt0uEEGWjM5LrpoqHvfmhAVs-zlXIcJBk,912
|
|
817
817
|
ansible_test/_data/playbooks/windows_hosts_restore.yml,sha256=fVSgEeJeNgeVAqlKw7DLTZwVLA96WUqDhSrOD1JDPpc,252
|
|
818
818
|
ansible_test/_data/pytest/config/default.ini,sha256=3f5D0MA9l2RafBBriLaG2eH3ePHPLb43NpN7wZPB_u4,151
|
|
819
|
-
ansible_test/_data/requirements/ansible-test.txt,sha256=
|
|
820
|
-
ansible_test/_data/requirements/ansible.txt,sha256=
|
|
819
|
+
ansible_test/_data/requirements/ansible-test.txt,sha256=rT-saza7U9c_cIOOB2R9YrOsp3HaL3lTpCnQdpYkWVE,189
|
|
820
|
+
ansible_test/_data/requirements/ansible.txt,sha256=8dBKRR1Sg1I3ZH0CGbOb7m8PKC5od36YCQeYjT0o2F0,884
|
|
821
821
|
ansible_test/_data/requirements/constraints.txt,sha256=vPTuYu3DeJoE3q9bPj5l3mGef8m0vWyyVgZ8QRuWJ2g,819
|
|
822
822
|
ansible_test/_data/requirements/sanity.ansible-doc.in,sha256=9KRJJ-n37IMHpLJLv_VmFOhYF8Y3Vnk6eRyhwVKzC8A,108
|
|
823
|
-
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=
|
|
823
|
+
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=e7k83oJFMpemCzmTynyvqIPxJmoiAJmay8x8IXecbUg,169
|
|
824
824
|
ansible_test/_data/requirements/sanity.changelog.in,sha256=A0-S4lrfGxwfnbBNyA8IZ2slFrmHB70MZYVIQo6ogZE,135
|
|
825
|
-
ansible_test/_data/requirements/sanity.changelog.txt,sha256=
|
|
825
|
+
ansible_test/_data/requirements/sanity.changelog.txt,sha256=8Mp9gEED7Dlz3cB_EYtzJP2JfEiBClbJbvilGrbtl7Y,268
|
|
826
826
|
ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
|
|
827
827
|
ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
|
|
828
|
-
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=
|
|
829
|
-
ansible_test/_data/requirements/sanity.import.txt,sha256=
|
|
828
|
+
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=TfrAuUkb0LkhvUFcFKnuq14spEjpH3JKFDVRLZnQp7s,157
|
|
829
|
+
ansible_test/_data/requirements/sanity.import.txt,sha256=JPdDscrO6-UTD_50670DoEuzRylp3fHU7ZFtXAdC7tg,111
|
|
830
830
|
ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
|
|
831
|
-
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=
|
|
831
|
+
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=zT22L80tsUtRw-PCDX14hJI7lIxEymofGgCd6cYctQY,137
|
|
832
832
|
ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dKgP3VdfOB6CWbivZug,12
|
|
833
833
|
ansible_test/_data/requirements/sanity.pep8.txt,sha256=V8RHO5D99G-DfgqfnSIGhLI3mlQHbmQIu8Lonijbra8,113
|
|
834
834
|
ansible_test/_data/requirements/sanity.pslint.ps1,sha256=JoDUUNLXQ4xDXUB5_W00q9o-gZ1oW1oShLp--f5OEIE,1624
|
|
835
835
|
ansible_test/_data/requirements/sanity.pylint.in,sha256=CqgyF_s4K3o41RSc6KZVicBlhrb4twRm9zbp-HBwFeE,49
|
|
836
|
-
ansible_test/_data/requirements/sanity.pylint.txt,sha256=
|
|
836
|
+
ansible_test/_data/requirements/sanity.pylint.txt,sha256=Ghgqu1AtZ1R8H6QDW8f6Sosf4h3EWpMdbzRprYJ00mU,215
|
|
837
837
|
ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
|
|
838
|
-
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=
|
|
838
|
+
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=bNL2B-Y8kLGx81OxnqPRFn0DiGKrclW_OS2oAyRHDnU,150
|
|
839
839
|
ansible_test/_data/requirements/sanity.validate-modules.in,sha256=OVQi9h1QurdF-wa3-TkBuztXIs-QnyY2g8iYtOpo2cw,117
|
|
840
|
-
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=
|
|
840
|
+
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=_N5-AZ3LDJSLFZ4fqfRS4Od8C5l7O_wD8pF6ke-YaLY,211
|
|
841
841
|
ansible_test/_data/requirements/sanity.yamllint.in,sha256=qtd2lDJ0A39NOP8OpnLX9Rdf_dn_89jh2XCjmmvTgHs,16
|
|
842
|
-
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=
|
|
842
|
+
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=NJ9HFfOasBSkxqGcnnOfQkoI27ssx6JGBx4BKDHyiXA,149
|
|
843
843
|
ansible_test/_data/requirements/units.txt,sha256=C6f8bZXbZCzpryYQiqlbX6fp_mrLBo3OiNh9025pBxE,228
|
|
844
844
|
ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
|
|
845
845
|
ansible_test/_internal/__init__.py,sha256=-CjkMsavBRDGpgI3VLhvQoStH6DOct1_2SULu1L3bMY,3246
|
|
@@ -855,7 +855,7 @@ ansible_test/_internal/constants.py,sha256=qgVmng71FWdsIZXgUaQUEZfB9V0GC4jjhYbSp
|
|
|
855
855
|
ansible_test/_internal/containers.py,sha256=iOqs3Bi9127cl7h7kIPw-mo3tbM-7JAkmOwB-9ESvRE,34138
|
|
856
856
|
ansible_test/_internal/content_config.py,sha256=qbYoSKOBT-X7FhSCuVkYzgiIz5H4MIbua3DxcN-gYdA,5589
|
|
857
857
|
ansible_test/_internal/core_ci.py,sha256=GSRt726aNL167p3LWLWum36EFhYhOaRvJGOjzHi7J1g,17977
|
|
858
|
-
ansible_test/_internal/coverage_util.py,sha256=
|
|
858
|
+
ansible_test/_internal/coverage_util.py,sha256=8k9o6QqFufwK-NU504yhS7O94RMG_zKHdsmQsFXy3tg,9409
|
|
859
859
|
ansible_test/_internal/data.py,sha256=8APH-Bm6CeFO9ngWgZC8IxHeFzlxn0OQd6D5G1msSZU,11185
|
|
860
860
|
ansible_test/_internal/debugging.py,sha256=bL2mT7AHiKGSmZp2lZVDWDpkeMdOg3HgCZW1m1qTaYc,15563
|
|
861
861
|
ansible_test/_internal/delegation.py,sha256=EuISNM4weGSRM4WYf7SBvNmLIBWd9mW3bbE8LbiSi-M,13684
|
|
@@ -877,7 +877,7 @@ ansible_test/_internal/payload.py,sha256=F9sLPiTw-zNq0-zU-L_RIYOsXZmA3nsLWha2W2M
|
|
|
877
877
|
ansible_test/_internal/processes.py,sha256=H3n7jOGzvWdeTxsTWFx4TPIjSpt40g0T6j0wvYdOsWY,2231
|
|
878
878
|
ansible_test/_internal/provisioning.py,sha256=-6QTp-xjj7aOst_tSN2r4O8WS6BvnLQEPikn0vaR58E,7508
|
|
879
879
|
ansible_test/_internal/pypi_proxy.py,sha256=gVwaWvg8MWilSgHDYMcO0EAoXCKEg5Pqh44okgMseVk,6020
|
|
880
|
-
ansible_test/_internal/python_requirements.py,sha256=
|
|
880
|
+
ansible_test/_internal/python_requirements.py,sha256=1kEeBKOzQcvv78hLlak8m_t1zGLteOVEHfeJaP7r9y4,16038
|
|
881
881
|
ansible_test/_internal/ssh.py,sha256=7gTyNiwszPwFSM4aYT4YtAWfAR4lYLnOi7dpnv0SqwA,10635
|
|
882
882
|
ansible_test/_internal/target.py,sha256=XohjuOAMondCYLYR1ueXvWBpVV3MIbJ0nmd8eY5lfSo,25569
|
|
883
883
|
ansible_test/_internal/test.py,sha256=q17SmItAsiBWrSilDBZFSEBugv9QNsG5HzFOAFXcyh4,14516
|
|
@@ -980,7 +980,7 @@ ansible_test/_internal/commands/sanity/import.py,sha256=FIlRTYyTuNb4zXgpmnfQa8Fv
|
|
|
980
980
|
ansible_test/_internal/commands/sanity/integration_aliases.py,sha256=kTvC2r0tHhCu3YaMIAZlUjlfITYrBCl-gT06eo-F5MQ,16768
|
|
981
981
|
ansible_test/_internal/commands/sanity/pep8.py,sha256=PCGSymfPCUpX0Y966jV97mw3D6cpwPqPA5SwOUfEhkI,3126
|
|
982
982
|
ansible_test/_internal/commands/sanity/pslint.py,sha256=9k1zG_hdpTzq_6RN6RCH0TvWsIOXrJ9Gn_7OE_hWKfU,3211
|
|
983
|
-
ansible_test/_internal/commands/sanity/pylint.py,sha256=
|
|
983
|
+
ansible_test/_internal/commands/sanity/pylint.py,sha256=lUVBpZd0Y8MHLKWtAkUlyplQr2jbLiMf5Iz2QrRKfpY,12367
|
|
984
984
|
ansible_test/_internal/commands/sanity/shellcheck.py,sha256=ib4SFUmDjnLsnfa5PTwuh30_K8SB5CNC93_H7LKO82E,3071
|
|
985
985
|
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=anCiZFFYwYgQ5gztNvCbPV3J0sunQ4dQxt2TjPIghuY,7920
|
|
986
986
|
ansible_test/_internal/commands/sanity/yamllint.py,sha256=B0PBgrT0bBIhvee6yM1qFWQupeQOGiV6_jmbIuVQ2_M,3424
|
|
@@ -1040,11 +1040,11 @@ ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=ikwNi
|
|
|
1040
1040
|
ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=jJ1K5-7XP-SLu6cJaZjDSNrJt7SRxwLDhSBWotw9g5Y,2062
|
|
1041
1041
|
ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=MrPjqou7RMmSBmai8epIbSCLbYkZ0yyxFcadowXrPs8,4789
|
|
1042
1042
|
ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=PHGUd-3F3tkj-Ie8HPFlF2kg3R9F5z92Ric9icrLJs0,4363
|
|
1043
|
-
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=
|
|
1043
|
+
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=haMAhd90Mzkdi6uPZidJ9G3-IfZIRPJFBOs0K0by83w,22242
|
|
1044
1044
|
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py,sha256=tmQf_-2VAT2GVfwa9X9ruBcaj0Sz6Ifx4cXmdzJ99SQ,5226
|
|
1045
1045
|
ansible_test/_util/controller/sanity/pylint/plugins/hide_unraisable.py,sha256=s0AIoK03uqZSTwXSLvd4oXvf4WJ0Ckol5ingitHoMr4,836
|
|
1046
|
-
ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=
|
|
1047
|
-
ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py,sha256=
|
|
1046
|
+
ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=rAmIWvktm8F_E27EqRgdOK3P0l6iaZzfbQPhebANhVI,2453
|
|
1047
|
+
ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py,sha256=LRZaWMPPGlExB9gpMaSBuHgkCuTKC7GVZXHjWg11OMM,8604
|
|
1048
1048
|
ansible_test/_util/controller/sanity/shellcheck/exclude.txt,sha256=8U3ZTe1A1YRCXUB1AIAIgcd33ejBhzelBPkVdOJnhj8,21
|
|
1049
1049
|
ansible_test/_util/controller/sanity/validate-modules/validate.py,sha256=jpNOhA5qJ5LdlWlSOJoJyTUh9H1tepjcSYZXeHdhJRY,114
|
|
1050
1050
|
ansible_test/_util/controller/sanity/validate-modules/validate_modules/__init__.py,sha256=CRUAj-k-zJye4RAGZ8eR9HvP6weM6VKTwGmFYpI_0Bw,816
|
|
@@ -1091,8 +1091,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
|
|
|
1091
1091
|
ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
|
|
1092
1092
|
ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
|
|
1093
1093
|
ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
|
|
1094
|
-
ansible_core-2.20.
|
|
1095
|
-
ansible_core-2.20.
|
|
1096
|
-
ansible_core-2.20.
|
|
1097
|
-
ansible_core-2.20.
|
|
1098
|
-
ansible_core-2.20.
|
|
1094
|
+
ansible_core-2.20.0rc2.dist-info/METADATA,sha256=FMOLI27gacAb8WORuyYDQ9-GbrkNJ1zOWPiVmpB8jTI,7733
|
|
1095
|
+
ansible_core-2.20.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1096
|
+
ansible_core-2.20.0rc2.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
|
|
1097
|
+
ansible_core-2.20.0rc2.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
|
1098
|
+
ansible_core-2.20.0rc2.dist-info/RECORD,,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
base image=quay.io/ansible/base-test-container:v2.20-
|
|
2
|
-
default image=quay.io/ansible/default-test-container:v2.20-
|
|
3
|
-
default image=quay.io/ansible/ansible-core-test-container:v2.20-
|
|
4
|
-
alpine322 image=quay.io/ansible/alpine-test-container:3.22-v2.20-
|
|
5
|
-
fedora42 image=quay.io/ansible/fedora-test-container:42-v2.20-
|
|
6
|
-
ubuntu2204 image=quay.io/ansible/ubuntu-test-container:22.04-v2.20-
|
|
7
|
-
ubuntu2404 image=quay.io/ansible/ubuntu-test-container:24.04-v2.20-
|
|
1
|
+
base image=quay.io/ansible/base-test-container:v2.20-2 python=3.14,3.9,3.10,3.11,3.12,3.13
|
|
2
|
+
default image=quay.io/ansible/default-test-container:v2.20-3 python=3.14,3.9,3.10,3.11,3.12,3.13 context=collection
|
|
3
|
+
default image=quay.io/ansible/ansible-core-test-container:v2.20-3 python=3.14,3.9,3.10,3.11,3.12,3.13 context=ansible-core
|
|
4
|
+
alpine322 image=quay.io/ansible/alpine-test-container:3.22-v2.20-1 python=3.12 cgroup=none audit=none
|
|
5
|
+
fedora42 image=quay.io/ansible/fedora-test-container:42-v2.20-1 python=3.13 cgroup=v2-only
|
|
6
|
+
ubuntu2204 image=quay.io/ansible/ubuntu-test-container:22.04-v2.20-1 python=3.10
|
|
7
|
+
ubuntu2404 image=quay.io/ansible/ubuntu-test-container:24.04-v2.20-1 python=3.12
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# The test-constraints sanity test verifies this file, but changes must be made manually to keep it in up-to-date.
|
|
2
|
-
coverage == 7.10.
|
|
2
|
+
coverage == 7.10.7 ; python_version >= '3.9' and python_version <= '3.14'
|
|
@@ -12,4 +12,4 @@ packaging
|
|
|
12
12
|
# NOTE: Ref: https://github.com/sarugaku/resolvelib/issues/69
|
|
13
13
|
# NOTE: When updating the upper bound, also update the latest version used
|
|
14
14
|
# NOTE: in the ansible-galaxy-collection test suite.
|
|
15
|
-
resolvelib >= 0.
|
|
15
|
+
resolvelib >= 0.8.0, < 2.0.0 # dependency resolver used by ansible-galaxy
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# edit "sanity.import.in" and generate with: hacking/update-sanity-requirements.py --test import
|
|
2
|
-
PyYAML==6.0.
|
|
2
|
+
PyYAML==6.0.3
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# edit "sanity.integration-aliases.in" and generate with: hacking/update-sanity-requirements.py --test integration-aliases
|
|
2
|
-
PyYAML==6.0.
|
|
2
|
+
PyYAML==6.0.3
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# edit "sanity.pylint.in" and generate with: hacking/update-sanity-requirements.py --test pylint
|
|
2
|
-
astroid==
|
|
2
|
+
astroid==4.0.1
|
|
3
3
|
dill==0.4.0
|
|
4
|
-
isort==
|
|
4
|
+
isort==7.0.0
|
|
5
5
|
mccabe==0.7.0
|
|
6
|
-
platformdirs==4.
|
|
7
|
-
pylint==
|
|
8
|
-
PyYAML==6.0.
|
|
6
|
+
platformdirs==4.5.0
|
|
7
|
+
pylint==4.0.0
|
|
8
|
+
PyYAML==6.0.3
|
|
9
9
|
tomlkit==0.13.3
|
|
@@ -301,4 +301,15 @@ class PylintTest(SanitySingleVersion):
|
|
|
301
301
|
else:
|
|
302
302
|
messages = []
|
|
303
303
|
|
|
304
|
+
expected_paths = set(paths)
|
|
305
|
+
|
|
306
|
+
unexpected_messages = [message for message in messages if message["path"] not in expected_paths]
|
|
307
|
+
messages = [message for message in messages if message["path"] in expected_paths]
|
|
308
|
+
|
|
309
|
+
for unexpected_message in unexpected_messages:
|
|
310
|
+
display.info(f"Unexpected message: {json.dumps(unexpected_message)}", verbosity=4)
|
|
311
|
+
|
|
312
|
+
if unexpected_messages:
|
|
313
|
+
display.notice(f"Discarded {len(unexpected_messages)} unexpected messages. Use -vvvv to display.")
|
|
314
|
+
|
|
304
315
|
return messages
|
|
@@ -69,7 +69,7 @@ class CoverageVersion:
|
|
|
69
69
|
|
|
70
70
|
COVERAGE_VERSIONS = (
|
|
71
71
|
# IMPORTANT: Keep this in sync with the ansible-test.txt requirements file.
|
|
72
|
-
CoverageVersion('7.10.
|
|
72
|
+
CoverageVersion('7.10.7', 7, (3, 9), (3, 14)),
|
|
73
73
|
)
|
|
74
74
|
"""
|
|
75
75
|
This tuple specifies the coverage version to use for Python version ranges.
|
|
@@ -433,7 +433,7 @@ def get_venv_packages(python: PythonConfig) -> dict[str, str]:
|
|
|
433
433
|
# See: https://github.com/ansible/base-test-container/blob/main/files/installer.py
|
|
434
434
|
|
|
435
435
|
default_packages = dict(
|
|
436
|
-
pip='
|
|
436
|
+
pip='25.2',
|
|
437
437
|
)
|
|
438
438
|
|
|
439
439
|
override_packages: dict[str, dict[str, str]] = {
|