ansible-core 2.20.0rc2__py3-none-any.whl → 2.20.0rc3__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.

Files changed (22) hide show
  1. ansible/cli/arguments/option_helpers.py +9 -5
  2. ansible/config/base.yml +2 -0
  3. ansible/module_utils/ansible_release.py +1 -1
  4. ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1 +9 -7
  5. ansible/modules/package_facts.py +5 -5
  6. ansible/plugins/lookup/config.py +19 -36
  7. ansible/release.py +1 -1
  8. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/METADATA +1 -1
  9. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/RECORD +22 -22
  10. ansible_test/_data/completion/docker.txt +2 -2
  11. ansible_test/_data/requirements/sanity.pylint.txt +1 -1
  12. ansible_test/_internal/compat/packaging.py +2 -2
  13. ansible_test/_internal/compat/yaml.py +2 -2
  14. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/WHEEL +0 -0
  15. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/entry_points.txt +0 -0
  16. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/COPYING +0 -0
  17. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/Apache-License.txt +0 -0
  18. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/BSD-3-Clause.txt +0 -0
  19. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/MIT-license.txt +0 -0
  20. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/PSF-license.txt +0 -0
  21. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/simplified_bsd.txt +0 -0
  22. {ansible_core-2.20.0rc2.dist-info → ansible_core-2.20.0rc3.dist-info}/top_level.txt +0 -0
@@ -44,6 +44,9 @@ class DeprecatedArgument:
44
44
  option: str | None = None
45
45
  """The specific option string that is deprecated; None applies to all options for this argument."""
46
46
 
47
+ alternatives: str | None = None
48
+ """The options to use instead."""
49
+
47
50
  def is_deprecated(self, option: str) -> bool:
48
51
  """Return True if the given option is deprecated, otherwise False."""
49
52
  return self.option is None or option == self.option
@@ -58,6 +61,7 @@ class DeprecatedArgument:
58
61
  Display().deprecated( # pylint: disable=ansible-invalid-deprecated-version
59
62
  msg=f'The {option!r} argument is deprecated.',
60
63
  version=self.version,
64
+ help_text=f'Use {self.alternatives} instead.' if self.alternatives else None
61
65
  )
62
66
 
63
67
 
@@ -419,7 +423,7 @@ def add_inventory_options(parser):
419
423
  """Add options for commands that utilize inventory"""
420
424
  parser.add_argument('-i', '--inventory', '--inventory-file', dest='inventory', action="append",
421
425
  help="specify inventory host path or comma separated host list",
422
- deprecated=DeprecatedArgument(version='2.23', option='--inventory-file'))
426
+ deprecated=DeprecatedArgument(version='2.23', option='--inventory-file', alternatives="-i or --inventory"))
423
427
  parser.add_argument('--list-hosts', dest='listhosts', action='store_true',
424
428
  help='outputs a list of matching hosts; does not execute anything else')
425
429
  parser.add_argument('-l', '--limit', default=C.DEFAULT_SUBSET, dest='subset',
@@ -444,10 +448,10 @@ def add_module_options(parser):
444
448
 
445
449
  def add_output_options(parser):
446
450
  """Add options for commands which can change their output"""
447
- parser.add_argument('-o', '--one-line', dest='one_line', action='store_true',
448
- help='condense output', deprecated=DeprecatedArgument(version='2.23'))
449
- parser.add_argument('-t', '--tree', dest='tree', default=None,
450
- help='log output to this directory', deprecated=DeprecatedArgument(version='2.23'))
451
+ parser.add_argument('-o', '--one-line', dest='one_line', action='store_true', help='condense output',
452
+ deprecated=DeprecatedArgument(version='2.23', alternatives='callback configuration to enable the oneline callback'))
453
+ parser.add_argument('-t', '--tree', dest='tree', default=None, help='log output to this directory',
454
+ deprecated=DeprecatedArgument(version='2.23', alternatives='callback configuration to enable the tree callback'))
451
455
 
452
456
 
453
457
  def add_runas_options(parser):
ansible/config/base.yml CHANGED
@@ -2233,6 +2233,8 @@ _Z_TEST_ENTRY:
2233
2233
  why: for testing
2234
2234
  version: '3.30'
2235
2235
  alternatives: nothing
2236
+ vars:
2237
+ - name: _z_test_entry
2236
2238
  _Z_TEST_ENTRY_2:
2237
2239
  version_added: '2.18'
2238
2240
  name: testentry
@@ -17,6 +17,6 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = '2.20.0rc2'
20
+ __version__ = '2.20.0rc3'
21
21
  __author__ = 'Ansible, Inc.'
22
22
  __codename__ = "Good Times Bad Times"
@@ -278,10 +278,16 @@ Function Add-CSharpType {
278
278
  if ($PSCmdlet.ParameterSetName -eq "Module") {
279
279
  $temp_path = $AnsibleModule.Tmpdir
280
280
  $include_debug = $AnsibleModule.Verbosity -ge 3
281
+
282
+ # AnsibleModule will handle the cleanup after module execution
283
+ # which should be enough time for AVs or other processes to release
284
+ # any locks on the temp files.
285
+ $tmpdir_clean_is_error = $false
281
286
  }
282
287
  else {
283
288
  $temp_path = [System.IO.Path]::GetTempPath()
284
289
  $include_debug = $IncludeDebugInfo.IsPresent
290
+ $tmpdir_clean_is_error = $true
285
291
  }
286
292
  $temp_path = Join-Path -Path $temp_path -ChildPath ([Guid]::NewGuid().Guid)
287
293
 
@@ -388,17 +394,13 @@ Function Add-CSharpType {
388
394
  }
389
395
  finally {
390
396
  # Try to delete the temp path, if this fails and we are running
391
- # with a module object write a warning instead of failing.
397
+ # with a module object, ignore and let it cleanup later.
392
398
  try {
393
399
  [System.IO.Directory]::Delete($temp_path, $true)
394
400
  }
395
401
  catch {
396
- $msg = "Failed to cleanup temporary directory '$temp_path' used for compiling C# code."
397
- if ($AnsibleModule) {
398
- $AnsibleModule.Warn("$msg Files may still be present after the task is complete. Error: $_")
399
- }
400
- else {
401
- throw "$msg Error: $_"
402
+ if ($tmpdir_clean_is_error) {
403
+ throw "Failed to cleanup temporary directory '$temp_path' used for compiling C# code. Error: $_"
402
404
  }
403
405
  }
404
406
  }
@@ -278,11 +278,11 @@ class RPM(RespawningLibMgr):
278
278
  return self._lib.TransactionSet().dbMatch()
279
279
 
280
280
  def get_package_details(self, package):
281
- return dict(name=package[self._lib.RPMTAG_NAME],
282
- version=package[self._lib.RPMTAG_VERSION],
283
- release=package[self._lib.RPMTAG_RELEASE],
284
- epoch=package[self._lib.RPMTAG_EPOCH],
285
- arch=package[self._lib.RPMTAG_ARCH],)
281
+ return dict(name=to_text(package[self._lib.RPMTAG_NAME]),
282
+ version=to_text(package[self._lib.RPMTAG_VERSION]),
283
+ release=to_text(package[self._lib.RPMTAG_RELEASE]),
284
+ epoch=to_text(package[self._lib.RPMTAG_EPOCH]),
285
+ arch=to_text(package[self._lib.RPMTAG_ARCH]),)
286
286
 
287
287
 
288
288
  class APT(RespawningLibMgr):
@@ -88,31 +88,6 @@ from ansible.errors import AnsibleError, AnsibleUndefinedConfigEntry
88
88
  from ansible.plugins.lookup import LookupBase
89
89
 
90
90
 
91
- def _get_plugin_config(pname, ptype, config, variables):
92
- # plugin creates settings on load, this is cached so not too expensive to redo
93
- loader = getattr(plugin_loader, '%s_loader' % ptype)
94
- p = loader.get(pname, class_only=True)
95
-
96
- if p is None:
97
- raise AnsibleError(f"Unable to load {ptype} plugin {pname!r}.")
98
-
99
- result, origin = C.config.get_config_value_and_origin(config, plugin_type=ptype, plugin_name=p._load_name, variables=variables)
100
-
101
- return result, origin
102
-
103
-
104
- def _get_global_config(config):
105
- try:
106
- result = getattr(C, config)
107
- except AttributeError:
108
- raise AnsibleUndefinedConfigEntry(f"Setting {config!r} does not exist.") from None
109
-
110
- if callable(result):
111
- raise ValueError(f"Invalid setting {config!r} attempted.")
112
-
113
- return result
114
-
115
-
116
91
  class LookupModule(LookupBase):
117
92
 
118
93
  def run(self, terms, variables=None, **kwargs):
@@ -135,18 +110,26 @@ class LookupModule(LookupBase):
135
110
 
136
111
  result = Sentinel
137
112
  origin = None
113
+
114
+ # plugin creates settings on load, we ensure that happens here
115
+ if pname:
116
+ # this is cached so not too expensive
117
+ loader = getattr(plugin_loader, f'{ptype}_loader')
118
+ p = loader.get(pname, class_only=True)
119
+ if p is None:
120
+ raise AnsibleError(f"Unable to load {ptype} plugin {pname!r}.")
138
121
  try:
139
- if pname:
140
- result, origin = _get_plugin_config(pname, ptype, term, variables)
141
- else:
142
- result = _get_global_config(term)
143
- except AnsibleUndefinedConfigEntry:
144
- if missing == 'error':
145
- raise
146
- elif missing == 'warn':
147
- self._display.warning(f"Skipping, did not find setting {term!r}.")
148
- elif missing == 'skip':
149
- pass # this is not needed, but added to have all 3 options stated
122
+ result, origin = C.config.get_config_value_and_origin(term, plugin_type=ptype, plugin_name=pname, variables=variables)
123
+ except AnsibleUndefinedConfigEntry as e:
124
+ match missing:
125
+ case 'error':
126
+ raise
127
+ case 'skip':
128
+ pass
129
+ case 'warn':
130
+ self._display.error_as_warning(msg=f"Skipping {term}.", exception=e)
131
+ case _:
132
+ raise AnsibleError(f"Invalid option for error handling, missing must be error, warn or skip, got: {missing}.") from e
150
133
 
151
134
  if result is not Sentinel:
152
135
  if show_origin:
ansible/release.py CHANGED
@@ -17,6 +17,6 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = '2.20.0rc2'
20
+ __version__ = '2.20.0rc3'
21
21
  __author__ = 'Ansible, Inc.'
22
22
  __codename__ = "Good Times Bad Times"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ansible-core
3
- Version: 2.20.0rc2
3
+ Version: 2.20.0rc3
4
4
  Summary: Radically simple IT automation
5
5
  Author: Ansible Project
6
6
  Project-URL: Homepage, https://ansible.com/
@@ -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=JuWdZRXiuGpgugIPKbgIah7MPpn-jtIoGJ3i7fEHCWQ,843
6
+ ansible/release.py,sha256=zUvA4C7qqj63fZLJtKJlynllPdyRLAfyzroDGYMJCtw,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
@@ -87,7 +87,7 @@ ansible/cli/playbook.py,sha256=F8v8t4v2dIpSVOlLb2RtvoHC3MraKjPbq1j01OOrQrA,10480
87
87
  ansible/cli/pull.py,sha256=3tKVqrh3YRnS-EaAYSVnOGIT57GUPKMhxVcmUbzdipM,18355
88
88
  ansible/cli/vault.py,sha256=bG_8LZ697ohjjJqb7aDryQmc9ahQggiZA2IPmgyTDnA,23195
89
89
  ansible/cli/arguments/__init__.py,sha256=_4taT82hZKKTzhdXKmIgqxWwuG21XZxF874V2k1e3us,168
90
- ansible/cli/arguments/option_helpers.py,sha256=BO_yCmofRJRuaVQXVmfiLHfaEJaKkoiMPDk9DCvHgTw,24445
90
+ ansible/cli/arguments/option_helpers.py,sha256=dy9XtN6UVAI6L1ICzxRcvJlL1geDwPUDf_ua3eseJXo,24780
91
91
  ansible/cli/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
92
  ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=LVRkDIrsgL_72dJ7ZzZVn6On9u_SASNsh-tgCog8ZxU,13121
93
93
  ansible/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -96,7 +96,7 @@ ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,10
96
96
  ansible/compat/importlib_resources.py,sha256=75SJApiBzBKuBDknj81vdfzSJSxc2Pi4YvgQkmmGtew,542
97
97
  ansible/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
98
  ansible/config/ansible_builtin_runtime.yml,sha256=nwL_-rqEEmpuSHxZH70pJBiEosDKOPkYIboH3_7LVEY,376076
99
- ansible/config/base.yml,sha256=R4QJNRUX6vb7FsVi_KXZTSjM3_Xa4-dgOwsGdZJqvtU,90059
99
+ ansible/config/base.yml,sha256=pvY_Fx_BvDFuvA_RcgCfQW4LHJsqiMpiSN62QT1FS6U,90093
100
100
  ansible/config/manager.py,sha256=Ll5GW1lfIuyu4UKr4nBVNot-lu3qfjvD5ntBRMiJbus,32459
101
101
  ansible/errors/__init__.py,sha256=W1s19PaheqXMI2yKnZCuaKKjSAJRPgU1_xF2_J9B1NU,16353
102
102
  ansible/executor/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
@@ -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=JuWdZRXiuGpgugIPKbgIah7MPpn-jtIoGJ3i7fEHCWQ,843
215
+ ansible/module_utils/ansible_release.py,sha256=zUvA4C7qqj63fZLJtKJlynllPdyRLAfyzroDGYMJCtw,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
@@ -375,7 +375,7 @@ ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH
375
375
  ansible/module_utils/facts/virtual/sysctl.py,sha256=suvfSdKL5e_AAPCxE_EQRiqNHzpMJYSucT4URyn8Qxw,4741
376
376
  ansible/module_utils/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
377
  ansible/module_utils/parsing/convert_bool.py,sha256=XDOMp6RFXpDNFdaCjswtcdcOYrSgjP4LZ6-BmIKpKMA,1364
378
- ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=SI_yFbGgNN0xPrqekIahsT-_5ZjobpkXrO7iGEh953c,20126
378
+ ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=Pu4r0EJduybRublOWrs0sr0-zD6RfZUDqwJgntUFDuU,20218
379
379
  ansible/module_utils/powershell/Ansible.ModuleUtils.ArgvParser.psm1,sha256=x9wTV5jOpoCtFbpZW6GoZEELdL3RNOhdY91QOhYxJqk,3327
380
380
  ansible/module_utils/powershell/Ansible.ModuleUtils.Backup.psm1,sha256=ebgpraCNmPwswlLHShgiviTk2thw8ch3ekF5n_I_cXg,1104
381
381
  ansible/module_utils/powershell/Ansible.ModuleUtils.CamelConversion.psm1,sha256=QHjUrv-qWwm3j3QJ-sN844f7B-Dzoadd6mxpQvFasgA,2456
@@ -431,7 +431,7 @@ ansible/modules/lineinfile.py,sha256=x0nR7uJ5B28Ckap_Yo_3zMabc742jXj59Dk9qF616dQ
431
431
  ansible/modules/meta.py,sha256=0oLfvydcj8XeZsRR8yoRzgTINaPsEfl3-jxp1T-lzDM,7264
432
432
  ansible/modules/mount_facts.py,sha256=vy9Eeu17_EMsJbxgc23pa7DDXwU8rg11WFJTqcLjMXo,26018
433
433
  ansible/modules/package.py,sha256=xwiE0SDoz1Drrh_UjsRi7naAY9Xp4hpO_TbmLio2EFg,3877
434
- ansible/modules/package_facts.py,sha256=Y4zsDmDaHHjVYAuX3vyhlW8TVSeZYGCyceykmzKTSQw,17283
434
+ ansible/modules/package_facts.py,sha256=LmwEHbKwOorRzFGxVMXMhwq2pjFPvGiDYUiJhWFrUX0,17328
435
435
  ansible/modules/pause.py,sha256=VzN_Ay94TYvBPTQRG0s0YTnXJkMTh8CEy2KostS2nVY,3796
436
436
  ansible/modules/ping.py,sha256=80pw8eLBvT2pw8f0V3zxqExQhbsKKoA6YfPBvcncTng,2325
437
437
  ansible/modules/pip.py,sha256=N3vI-WcWqhxk8lgPRCYiYg7ixKoMWQ6N8w__lXxDDsI,32768
@@ -662,7 +662,7 @@ ansible/plugins/inventory/script.py,sha256=kYQdNHM16TZXOGNNHEXYC0xuaDknylcZcj3DQ
662
662
  ansible/plugins/inventory/toml.py,sha256=NiWAgbbLXXGD8Y1g83_LYve2sVg-dM68--u1KvWwHKY,5364
663
663
  ansible/plugins/inventory/yaml.py,sha256=td4ELEH0tk7CG94NsKL4lehJTtMpzNpGKJ_iA_iOzuw,7471
664
664
  ansible/plugins/lookup/__init__.py,sha256=95ildPoHi21L34ULD1h6mNknuQ3yrjZCBaE5rPdODi8,5523
665
- ansible/plugins/lookup/config.py,sha256=9IHIWhAcflC-Gm-1RVPcIVMmaULYhUbwoKLTBBzqxkA,6186
665
+ ansible/plugins/lookup/config.py,sha256=3ltQo3kECUM-BDNxT0HCUg7vaHYltuszdEOdOZHIuCw,5857
666
666
  ansible/plugins/lookup/csvfile.py,sha256=HvzQSN2F6Lt_oyp12PzrcLAQTKc1NPWNszEw8WniImo,6487
667
667
  ansible/plugins/lookup/dict.py,sha256=9LTeK9YZOG4U9l-2gy5Jp1sDqsXRlf4F3WbULV17pjE,2139
668
668
  ansible/plugins/lookup/env.py,sha256=IEMZs0p_rLR4jcfJ-sNqJT8vijnH4-MNyNXM_ttuqJ4,2620
@@ -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.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
793
+ ansible_core-2.20.0rc3.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
794
+ ansible_core-2.20.0rc3.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
795
+ ansible_core-2.20.0rc3.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
796
+ ansible_core-2.20.0rc3.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
797
+ ansible_core-2.20.0rc3.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
798
+ ansible_core-2.20.0rc3.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=X0dumcH7_1ezXvOoTc8U9G4N4dTvERUWU0RZ0a17UUk,685
802
+ ansible_test/_data/completion/docker.txt,sha256=HQNcpTK60cMHSE47Ns7xo2v54YTaiNHB4RCHUxljBSo,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
@@ -833,7 +833,7 @@ ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dK
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=Ghgqu1AtZ1R8H6QDW8f6Sosf4h3EWpMdbzRprYJ00mU,215
836
+ ansible_test/_data/requirements/sanity.pylint.txt,sha256=G36wn5PJStr-t3srx_p73Di1XbIi5C5WOtn3LWcXCq8,215
837
837
  ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
838
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
@@ -987,8 +987,8 @@ ansible_test/_internal/commands/sanity/yamllint.py,sha256=B0PBgrT0bBIhvee6yM1qFW
987
987
  ansible_test/_internal/commands/shell/__init__.py,sha256=5_mAVu8oDA9JSSE8vGZJR3sg0OaEd9BPeVs7xoPJJ1Q,6712
988
988
  ansible_test/_internal/commands/units/__init__.py,sha256=CeOcMhEfO0hgBm68LeZoIhycK_tYTtzOP8xaLhnkyJk,11839
989
989
  ansible_test/_internal/compat/__init__.py,sha256=YHcINH9sH7EXE0TBSm_O6Z1TRwiSr2xmnBRqP5Wlpik,89
990
- ansible_test/_internal/compat/packaging.py,sha256=EvFUiczMnGHLIhg-r3ffJ4tK9hjoiLWVfK3Tn3f-Z5U,519
991
- ansible_test/_internal/compat/yaml.py,sha256=1sInz47bf6XxV22fOFYlDsVa9RhECgJRSMG3sjJaLZU,531
990
+ ansible_test/_internal/compat/packaging.py,sha256=1NhpEf-y5K4NuhRc_SRh5cMGn_5asOCvgt1fl3Of2KY,583
991
+ ansible_test/_internal/compat/yaml.py,sha256=hNfJSMiVSTmUUiOcVZ_1L0zCAOCP-nmrZNk5Cnj1CDc,595
992
992
  ansible_test/_internal/dev/__init__.py,sha256=NPM0p0CIFmNCq8Lc9HFBb5HhBxHivXT3YWap80xtSlA,139
993
993
  ansible_test/_internal/dev/container_probe.py,sha256=Cti6uoU81h7QvbILhAo9L7RV2wNXiZDvpF8gyNOAddo,7820
994
994
  ansible_test/_internal/provider/__init__.py,sha256=xCOhN6XKfGzvIYfeUNaB3r1-50orIgq9BzsWQ1PL1AA,2240
@@ -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.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,,
1094
+ ansible_core-2.20.0rc3.dist-info/METADATA,sha256=GpwWhG3sZJAEC3Hu_TSgBgtAR_j1-NSPTGeBjngf-as,7733
1095
+ ansible_core-2.20.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1096
+ ansible_core-2.20.0rc3.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
1097
+ ansible_core-2.20.0rc3.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
1098
+ ansible_core-2.20.0rc3.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
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
2
+ default image=quay.io/ansible/default-test-container:v2.20-4 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-4 python=3.14,3.9,3.10,3.11,3.12,3.13 context=ansible-core
4
4
  alpine322 image=quay.io/ansible/alpine-test-container:3.22-v2.20-1 python=3.12 cgroup=none audit=none
5
5
  fedora42 image=quay.io/ansible/fedora-test-container:42-v2.20-1 python=3.13 cgroup=v2-only
6
6
  ubuntu2204 image=quay.io/ansible/ubuntu-test-container:22.04-v2.20-1 python=3.10
@@ -4,6 +4,6 @@ dill==0.4.0
4
4
  isort==7.0.0
5
5
  mccabe==0.7.0
6
6
  platformdirs==4.5.0
7
- pylint==4.0.0
7
+ pylint==4.0.2
8
8
  PyYAML==6.0.3
9
9
  tomlkit==0.13.3
@@ -12,8 +12,8 @@ try:
12
12
 
13
13
  SpecifierSet: t.Optional[t.Type[specifiers.SpecifierSet]] = specifiers.SpecifierSet
14
14
  Version: t.Optional[t.Type[version.Version]] = version.Version
15
- PACKAGING_IMPORT_ERROR = None
15
+ PACKAGING_IMPORT_ERROR = None # pylint: disable=invalid-name
16
16
  except ImportError as ex:
17
17
  SpecifierSet = None # pylint: disable=invalid-name
18
18
  Version = None # pylint: disable=invalid-name
19
- PACKAGING_IMPORT_ERROR = ex
19
+ PACKAGING_IMPORT_ERROR = ex # pylint: disable=invalid-name
@@ -11,10 +11,10 @@ from functools import (
11
11
  try:
12
12
  import yaml as _yaml
13
13
 
14
- YAML_IMPORT_ERROR = None
14
+ YAML_IMPORT_ERROR = None # pylint: disable=invalid-name
15
15
  except ImportError as ex:
16
16
  yaml_load = None # pylint: disable=invalid-name
17
- YAML_IMPORT_ERROR = ex
17
+ YAML_IMPORT_ERROR = ex # pylint: disable=invalid-name
18
18
  else:
19
19
  try:
20
20
  _SafeLoader: t.Union[t.Type[_yaml.CSafeLoader], t.Type[_yaml.SafeLoader]] = _yaml.CSafeLoader