Use a versioned pip bootstrapper in ansible-test.

This commit is contained in:
Matt Clay 2021-01-25 11:50:42 -08:00
parent ab667200cc
commit fc590aeb21
2 changed files with 3 additions and 4 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- ansible-test - The ``--remote`` option has been updated to use a versioned ``get-pip.py`` bootstrapper to avoid issues with future releases.

View file

@ -11,11 +11,8 @@ cd ~/
install_pip () {
if ! "${python_interpreter}" -m pip.__main__ --version --disable-pip-version-check 2>/dev/null; then
case "${python_version}" in
"2.7")
pip_bootstrap_url="https://bootstrap.pypa.io/${python_version}/get-pip.py"
;;
*)
pip_bootstrap_url="https://bootstrap.pypa.io/get-pip.py"
pip_bootstrap_url="https://ansible-ci-files.s3.amazonaws.com/ansible-test/get-pip-20.3.4.py"
;;
esac
curl --silent --show-error "${pip_bootstrap_url}" -o /tmp/get-pip.py