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.
pull/70250/head
Matt Clay 4 years ago
parent 0073ab5fa6
commit 70c59423fc

@ -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
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
while true; do
yum install -q -y \

Loading…
Cancel
Save