Skip to content

Commit

Permalink
ci/cd - downgrade python ansible deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0ppy-d1sk committed Jul 15, 2024
1 parent ad66a03 commit aff65f5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion misc/requirements-ansible.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ansible==10.1.0
ansible==9.5.1
12 changes: 6 additions & 6 deletions misc/requirements-ansible.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
#
# pip-compile --allow-unsafe --generate-hashes --strip-extras requirements-ansible.in
#
ansible==10.1.0 \
--hash=sha256:05b761c4628a0fc216478a5e3c111613c61fd13280846fa84843a63c36c7b1b6 \
--hash=sha256:7d8c44557f570687306e19d0e3296ad230593cb12bda35dcfc9274a6063af22a
ansible==9.5.1 \
--hash=sha256:3c278bc9642b97fc953b2ba05b99cd80801e75bf3567dfaa1cb5131fe0ec1ecd \
--hash=sha256:aed2f4208a75836a27c13555ec5d8d942fe3b089a8b1fc44e8234fadd9e649fd
# via -r requirements-ansible.in
ansible-core==2.17.1 \
--hash=sha256:46449d71bbd17c3ce85fe379721d88d333fd23637b5c3798e83fae5fa38def00 \
--hash=sha256:aaaccf6a9fe05968821a02079c5ec4c33a7fe5f02d9f5d94f7c3a69f71eab675
ansible-core==2.16.8 \
--hash=sha256:59e4aa40ed5acdb4ef9bbf3d058918fff93f66a149373d8159c8a29604410bda \
--hash=sha256:8fab9f08049e3cbc181f0566a17dfb896d9164ef5048c63e9e07fda4624686c7
# via ansible
cffi==1.16.0 \
--hash=sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc \
Expand Down
3 changes: 3 additions & 0 deletions src/deps/update_python_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ files=("requirements.in" "../scheduler/requirements.in" "../ui/requirements.in")
shopt -s globstar
for file in ../{common,../{docs,misc,tests}}/**/requirements*.in
do
if echo "$file" | grep "ansible"; then
continue
fi
files+=("$file")
done
shopt -u globstar
Expand Down

0 comments on commit aff65f5

Please sign in to comment.