diff options
author | Matt Clay <matt@mystile.com> | 2020-06-23 10:09:06 -0700 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2020-06-26 11:32:16 -0700 |
commit | 73ee85145b11722d1be2f1fbbc209138747b689c (patch) | |
tree | f3549bb202233d13c5b77e93487c0f64ae6bd41d /test | |
parent | bcd7c860e22b9eb80c3d50ff3fdab7ee99db0f79 (diff) | |
download | ansible-73ee85145b11722d1be2f1fbbc209138747b689c.tar.gz |
[stable-2.10] 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.
(cherry picked from commit 70c59423fcfeb7560299612189df4b56379a2842)
Co-authored-by: Matt Clay <matt@mystile.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/ansible_test/_data/setup/remote.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lib/ansible_test/_data/setup/remote.sh b/test/lib/ansible_test/_data/setup/remote.sh index 6a70863a0e..f6b537009b 100644 --- a/test/lib/ansible_test/_data/setup/remote.sh +++ b/test/lib/ansible_test/_data/setup/remote.sh @@ -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 \ |