Skip to content

Commit 9e9161c

Browse files
committed
CI: Clamp ansible-base to < 2.10.14
refs #861
1 parent a990eb3 commit 9e9161c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.ci/ansible_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'-r tests/requirements.txt '
1313
'-r tests/ansible/requirements.txt',
1414
# encoding is required for installing ansible 2.10 with pip2, otherwise we get a UnicodeDecode error
15-
'LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8 pip install -q ansible=={0}'.format(ci_lib.ANSIBLE_VERSION)
15+
'LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8 pip install "ansible-base<2.10.14" "ansible=={}"'.format(ci_lib.ANSIBLE_VERSION)
1616
],
1717
[
1818
'aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws',

.ci/debops_common_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Must be installed separately, as PyNACL indirect requirement causes
1111
# newer version to be installed if done in a single pip run.
1212
'pip install "pycparser<2.19"',
13-
'pip install -qqq debops[ansible]==2.1.2 ansible==%s' % ci_lib.ANSIBLE_VERSION,
13+
'pip install -qqq "debops[ansible]==2.1.2" "ansible-base<2.10.14" "ansible=={}"'.format(ci_lib.ANSIBLE_VERSION),
1414
],
1515
[
1616
'aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws',

.ci/localhost_ansible_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'pip install '
1313
'-r tests/requirements.txt '
1414
'-r tests/ansible/requirements.txt',
15-
'pip install -q ansible=={}'.format(ci_lib.ANSIBLE_VERSION)
15+
'pip install -q "ansible-base<2.10.14" "ansible=={}"'.format(ci_lib.ANSIBLE_VERSION)
1616
]
1717
]
1818

0 commit comments

Comments
 (0)