File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 66 - PYVERSION="2.7" NENGINES=1
77 - PYVERSION="2.7" NENGINES=9
88 - PYVERSION="3.4" NENGINES=9
9+ - PYVERSION="3.5" NENGINES=9
910before_install :
1011 - |
1112 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
@@ -17,13 +18,13 @@ before_install:
1718 sudo apt-get update;
1819 fi
1920 - |
20- if [[ "$ PYVERSION" == "2.7 " && "$TRAVIS_OS_NAME" == "linux" ]]; then
21+ if [[ ${ PYVERSION:0:1} == "2" && "$TRAVIS_OS_NAME" == "linux" ]]; then
2122 wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
22- elif [[ "$ PYVERSION" == "2.7 " && "$TRAVIS_OS_NAME" == "osx" ]]; then
23+ elif [[ ${ PYVERSION:0:1} == "2" && "$TRAVIS_OS_NAME" == "osx" ]]; then
2324 wget https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh -O miniconda.sh;
24- elif [[ "$ PYVERSION" == "3.4 " && "$TRAVIS_OS_NAME" == "linux" ]]; then
25+ elif [[ ${ PYVERSION:0:1} == "3" && "$TRAVIS_OS_NAME" == "linux" ]]; then
2526 wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
26- elif [[ "$ PYVERSION" == "3.4 " && "$TRAVIS_OS_NAME" == "osx" ]]; then
27+ elif [[ ${ PYVERSION:0:1} == "3" && "$TRAVIS_OS_NAME" == "osx" ]]; then
2728 wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
2829 else
2930 exit 1;
You can’t perform that action at this time.
0 commit comments