From 43bf23e4e7587b2069e283ce58fbf4770582ee2b Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Sun, 14 Feb 2021 09:30:40 +0100 Subject: [PATCH] travis python version skip fix --- travis2bash.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/travis2bash.sh b/travis2bash.sh index 47f6b89..1a55f09 100755 --- a/travis2bash.sh +++ b/travis2bash.sh @@ -163,6 +163,7 @@ if [[ "$(declare -p travis_python)" =~ "declare -a" ]]; then ppath=/usr/bin/python$pv if [ -n "$TRAVIS_PYTHON" ] && [ "$TRAVIS_PYTHON" != "$pv" ]; then echo "skipping python-$pv due to TRAVIS_PYTHON=$TRAVIS_PYTHON" + continue fi #if [ ! -e "$ppath" ]; then sudo apt -y install "python$pv" "python${pv}-dev"