X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpython-tools-install.sh;h=4506062c3ba14797b58dfd56b14f400dea97e52b;hb=90282bdb059493231c298e0d5d6aa7ccfeac7bf7;hp=74807dc5de50c38a5217db13e25e635728eac211;hpb=f68122d22bc4007d472cd5daff30824e732a91bc;p=releng%2Fglobal-jjb.git diff --git a/shell/python-tools-install.sh b/shell/python-tools-install.sh index 74807dc5..4506062c 100644 --- a/shell/python-tools-install.sh +++ b/shell/python-tools-install.sh @@ -14,11 +14,13 @@ set -eux -o pipefail REQUIREMENTS_FILE=$(mktemp /tmp/requirements-XXXX.txt) cat << EOF > "$REQUIREMENTS_FILE" -lftools~=0.17.1 +lftools[openstack]~=0.18.0 python-heatclient~=1.16.1 python-openstackclient~=3.16.0 EOF -pip install --user --quiet --upgrade pip==18.0 setuptools==40.0.0 -pip install --user --quiet --upgrade -r "$REQUIREMENTS_FILE" +# Use `python -m pip` to ensure we are using the latest version of pip +python -m pip install --user --quiet --upgrade pip +python -m pip install --user --quiet --upgrade setuptools +python -m pip install --user --quiet --upgrade -r "$REQUIREMENTS_FILE" pip freeze