[stable-2.10] Use a versioned pip bootstrapper in ansible-test. (#73359)
(cherry picked from commit fc590aeb21
)
Co-authored-by: Matt Clay <matt@mystile.com>
This commit is contained in:
parent
1f90c11782
commit
c47ec375fa
2 changed files with 3 additions and 4 deletions
2
changelogs/fragments/ansible-test-pip-bootstrap-s3.yml
Normal file
2
changelogs/fragments/ansible-test-pip-bootstrap-s3.yml
Normal 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.
|
|
@ -11,11 +11,8 @@ cd ~/
|
||||||
install_pip () {
|
install_pip () {
|
||||||
if ! "${python_interpreter}" -m pip.__main__ --version --disable-pip-version-check 2>/dev/null; then
|
if ! "${python_interpreter}" -m pip.__main__ --version --disable-pip-version-check 2>/dev/null; then
|
||||||
case "${python_version}" in
|
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
|
esac
|
||||||
curl --silent --show-error "${pip_bootstrap_url}" -o /tmp/get-pip.py
|
curl --silent --show-error "${pip_bootstrap_url}" -o /tmp/get-pip.py
|
||||||
|
|
Loading…
Reference in a new issue