X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpython-tools-install.sh;h=9fda0be4f68e2c84dfd6552129fccff26eebe41b;hb=c3128e6979246c6dadb83be4a14b5179b5d53721;hp=4506062c3ba14797b58dfd56b14f400dea97e52b;hpb=90282bdb059493231c298e0d5d6aa7ccfeac7bf7;p=releng%2Fglobal-jjb.git diff --git a/shell/python-tools-install.sh b/shell/python-tools-install.sh index 4506062c..9fda0be4 100644 --- a/shell/python-tools-install.sh +++ b/shell/python-tools-install.sh @@ -13,12 +13,22 @@ set -eux -o pipefail REQUIREMENTS_FILE=$(mktemp /tmp/requirements-XXXX.txt) +# Note: To test lftools master branch change the lftools configuration below in +# the requirements file from "lftools[openstack]~=#.##.#" to +# git+https://github.com/lfit/releng-lftools.git#egg=lftools[openstack] + cat << EOF > "$REQUIREMENTS_FILE" -lftools[openstack]~=0.18.0 +lftools[openstack]~=0.20.0 python-heatclient~=1.16.1 python-openstackclient~=3.16.0 +dogpile.cache~=0.6.8 # Version 0.7.[01] seems to break openstackclient +niet~=1.4.2 # Extract values from yaml EOF +echo "Requirements file" +echo "-----------------" +cat "$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