X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpython-tools-install.sh;h=4506062c3ba14797b58dfd56b14f400dea97e52b;hb=feb34d2939c4cd13bb6f21639f9bcca486b44db5;hp=c57609ca9efbd2a0be3f340f1c6b4ab1934fe963;hpb=0ea259773ff37f8a8fdade2424548a31c0bd6590;p=releng%2Fglobal-jjb.git diff --git a/shell/python-tools-install.sh b/shell/python-tools-install.sh index c57609ca..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.15.0 +lftools[openstack]~=0.18.0 python-heatclient~=1.16.1 python-openstackclient~=3.16.0 EOF -python -m pip install --user --quiet --upgrade pip~=18.0 setuptools~=40.2.0 +# 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