-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Ensure that our lower requirements can be used - Make uv use constraints like pip (failed to for some time) - Fix broken test logic related to vault password
- Loading branch information
Showing
7 changed files
with
24 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# Special order section for helping pip: | ||
will-not-work-on-windows-try-from-wsl-instead; platform_system=='Windows' | ||
ansible-core>=2.13.0 # GPLv3 | ||
ansible-core>=2.14.0 # GPLv3 | ||
ansible-compat>=24.10.0 # GPLv3 | ||
# alphabetically sorted: | ||
black>=24.3.0 # MIT (security) | ||
filelock>=3.3.0 # The Unlicense | ||
filelock>=3.8.2 # The Unlicense | ||
importlib-metadata # Apache | ||
jsonschema>=4.10.0 # MIT, version needed for improved errors | ||
packaging>=21.3 # Apache-2.0,BSD-2-Clause | ||
packaging>=22.0 # Apache-2.0,BSD-2-Clause | ||
pathspec>=0.10.3 # Mozilla Public License 2.0 (MPL 2.0) | ||
pyyaml>=5.4.1 # MIT (centos 9 has 5.3.1) | ||
pyyaml>=6.0.2 # MIT (compilation probles with older versions) | ||
ruamel.yaml>=0.18.5,!=0.18.7,!=0.18.8 # MIT | ||
subprocess-tee>=0.4.1 # MIT, used by ansible-compat | ||
yamllint >= 1.30.0 # GPLv3 | ||
yamllint >= 1.34.0 # GPLv3 | ||
wcmatch>=8.1.2; python_version < '3.12' # MIT | ||
wcmatch>=8.5.0; python_version >= '3.12' # MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# This file is kept in a different directory than .config in order to not be | ||
# automatically updated by dependabot. This should be kept in sync with | ||
# minimal requirements configured inside .config/requirements.in | ||
ansible-core==2.13.0 | ||
ansible-compat==24.5.1 # GPLv3 | ||
ansible-core==2.14.0 | ||
ansible-compat==24.10.0 # GPLv3 | ||
black==24.3.0 # MIT (security) | ||
filelock==3.3.0 # The Unlicense | ||
filelock==3.8.2 # The Unlicense | ||
jsonschema==4.10.0 # MIT, version needed for improved errors | ||
packaging==21.3 | ||
packaging==22.0 | ||
pathspec==0.10.3 | ||
pyyaml==5.4.1 | ||
pyyaml==6.0.2 | ||
ruamel.yaml==0.18.5 # MIT | ||
subprocess-tee==0.4.1 # MIT, used by ansible-compat | ||
# https://packages.ubuntu.com/noble/python3-wcmatch | ||
# https://packages.fedoraproject.org/pkgs/python-wcmatch/python3-wcmatch/ | ||
wcmatch==8.1.2; python_version < '3.12' # EPEL 8 | ||
wcmatch==8.5.0; python_version >= '3.12' | ||
yamllint == 1.30.0 | ||
yamllint == 1.34.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
secret123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
[defaults] | ||
collections_path = collections:examples/playbooks/collections | ||
# to avoid accidental use of vault from user environment: | ||
vault_password_file = .vault_pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters