Pin ansible-test requirements for RHEL.
The `packaging` and `pyparsing` packages are now installed by `ansible-test` during provisioning of RHEL instances to match the downstream vendored versions.
This commit is contained in:
parent
0073ab5fa6
commit
70c59423fc
2 changed files with 5 additions and 0 deletions
2
changelogs/fragments/ansible-test-rhel-requirements.yml
Normal file
2
changelogs/fragments/ansible-test-rhel-requirements.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- ansible-test - Provisioning of RHEL instances now includes installation of pinned versions of ``packaging`` and ``pyparsing`` to match the downstream vendored versions.
|
|
@ -70,6 +70,9 @@ elif [ "${platform}" = "rhel" ]; then
|
||||||
|
|
||||||
install_pip
|
install_pip
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# pin packaging and pyparsing to match the downstream vendored versions
|
||||||
|
"${python_interpreter}" -m pip install packaging==20.4 pyparsing==2.4.7 --disable-pip-version-check
|
||||||
elif [ "${platform}" = "centos" ]; then
|
elif [ "${platform}" = "centos" ]; then
|
||||||
while true; do
|
while true; do
|
||||||
yum install -q -y \
|
yum install -q -y \
|
||||||
|
|
Loading…
Reference in a new issue