X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpython-tools-install.sh;h=c607dcb7b8c5efb3c933a0244c710aa793e76ebe;hb=fb4690af739f87ee5619b5fd41a6f6a96cc594c5;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..c607dcb7 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~=0.17.1 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