X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=56bc43a946f74739affe4a46524afa8ea6ff0fdd;hb=d1e8579fac0f3a0aeba74f70b27a06ab3fdad54f;hp=9ad332950c6a5629849c5d2f4314add3eb0a323b;hpb=7b3a94680451f4bf5eb902ae63658d33d8029bdd;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index 9ad33295..56bc43a9 100644 --- a/shell/tox-install.sh +++ b/shell/tox-install.sh @@ -14,26 +14,10 @@ echo "---> tox-install.sh" # Use -x to show value of $PYTHON in output set -eux -o pipefail -#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 +# shellcheck disable=SC1090 +source ~/lf-env.sh -if [[ $done != "True" ]]; then - if [[ $PYTHON == "python2" ]]; then - $PYTHON -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 - else - $PYTHON -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv - fi -fi +lf-activate-venv --venv-file /tmp/.toxenv tox virtualenv urllib3~=1.26.15 # installs are silent, show version details in log $PYTHON --version