Skip to content

Commit 1b483fb

Browse files
committed
Merge pull request #643 from enthought/feature/test-on-python-3.5
Test on python 3.5
2 parents aa0aae5 + 1f87eda commit 1b483fb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ env:
66
- PYVERSION="2.7" NENGINES=1
77
- PYVERSION="2.7" NENGINES=9
88
- PYVERSION="3.4" NENGINES=9
9+
- PYVERSION="3.5" NENGINES=9
910
before_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;

0 commit comments

Comments
 (0)