Skip to content

Commit a2947e9

Browse files
committed
Nuke Travis python 3.1 testing
Python 3.1 is unsuported by Travis-ci [1], so this change removes it. [1]: http://about.travis-ci.org/docs/user/ci-environment/#Python-VM-images
1 parent 2f47f84 commit a2947e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ language: python
33
python:
44
- 2.6
55
- 2.7
6-
- 3.1
76
- 3.2
87

98
install:
109
- pip install --use-mirrors nose
1110
# This is a workaround to install numpy with the version of
1211
# virtualenv in Travis. If that is updated in the future, this can
1312
# be simplified to 'pip install numpy'
14-
- 'if [ $TRAVIS_PYTHON_VERSION == "3.2" ] || [ $TRAVIS_PYTHON_VERSION == "3.1" ]; then pip install https://github.com/y-p/numpy/archive/1.6.2_with_travis_fix.tar.gz; fi'
13+
- 'if [ $TRAVIS_PYTHON_VERSION == "3.2" ]; then pip install https://github.com/y-p/numpy/archive/1.6.2_with_travis_fix.tar.gz; fi'
1514
- 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install numpy; fi' # should be nop if pre-installed
1615
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip install --use-mirrors PIL; fi
1716
- python setup.py install

0 commit comments

Comments
 (0)