8000 Fix Travis config · matplotlib/matplotlib@d75525f · GitHub
[go: up one dir, main page]

Skip to content

Commit d75525f

Browse files
committed
Fix Travis config
1 parent 96ecc79 commit d75525f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.travis.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,11 @@ python:
77
- 3.3
88

99
install:
10-
- pip install --use-mirrors nose python-dateutil
10+
- pip install --use-mirrors nose python-dateutil numpy
1111
# This is a workaround to install the latest versions of pyparsing,
1212
# which are not yet available on PyPI
13-
- 'if [ $TRAVIS_PYTHON_VERSION == "3.2" ]; then pip install http://sourceforge.net/projects/pyparsing/files/pyparsing/pyparsing-2.0.0/pyparsing-2.0.0.tar.gz; fi'
13+
- 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]; then pip install http://sourceforge.net/projects/pyparsing/files/pyparsing/pyparsing-2.0.0/pyparsing-2.0.0.tar.gz; fi'
1414
- 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install http://sourceforge.net/projects/pyparsing/files/pyparsing/pyparsing-1.5.7/pyparsing-1.5.7.tar.gz; fi'
15-
# This is a workaround to install numpy with the version of
16-
# virtualenv in Travis. If that is updated in the future, this can
17-
# be simplified to 'pip install numpy'
18-
- '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'
19-
- 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install numpy; fi' # should be nop if pre-installed
2015
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip install --use-mirrors PIL; fi
2116
- sudo apt-get update && sudo apt-get install inkscape
2217
- python setup.py install

0 commit comments

Comments
 (0)
0