Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e327ea1 commit 7dd57d2Copy full SHA for 7dd57d2
1 file changed
.travis.yml
@@ -7,7 +7,12 @@ python:
7
- 3.2
8
9
install:
10
- - pip install --use-mirrors nose numpy
+ - pip install --use-mirrors nose
11
+ # This is a workaround to install numpy with the version of
12
+ # virtualenv in Travis. If that is updated in the future, this can
13
+ # 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'
15
+ - 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install numpy; fi' # should be nop if pre-installed
16
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip install --use-mirrors PIL; fi
17
- python setup.py install
18
0 commit comments