X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=0434b3a2b19f533e4faabba855ca7a280348c424;hb=b9eb4581940562effcf67863704a3ec2c47ceca0;hp=3734a7f45c1728a725b3da6abf1026e8716eed90;hpb=3dd1773c0ec86b6f24f5e31df7ea0d8650c3c092;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index 3734a7f4..0434b3a2 100644 --- a/shell/tox-install.sh +++ b/shell/tox-install.sh @@ -14,14 +14,25 @@ echo "---> tox-install.sh" # Use -x to show value of $PYTHON in output set -eux -o pipefail -# Tox version is pulled in through detox to mitigate version conflict - - -if [[ $PYTHON == "python2" ]]; then - $PYTHON -m pip install --user --quiet --upgrade tox-pyenv more-itertools~=5.0.0 -else - $PYTHON -m pip install --user --quiet --upgrade tox-pyenv +#Python 3.5 and python2 tox in Ubuntu 16.04 workaround +done="False" +if [[ -f /etc/lsb-release ]]; then + # shellcheck disable=SC1091 + source /etc/lsb-release + if [[ $DISTRIB_RELEASE == "16.04" ]]; then + echo "WARNING: Python projects should move to Ubuntu 18.04 to continue receiving support" + python2 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 + python3 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv zipp==1.1.0 + done="True" + fi fi +if [[ $done != "True" ]]; then + python -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 + python3 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv +fi +# installs are silent, show version details in log +$PYTHON --version +$PYTHON -m pip --version $PYTHON -m pip freeze