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 e7436ae commit b80c334Copy full SHA for b80c334
ci/install.sh
@@ -18,13 +18,10 @@ pip install $PIP_ARGS --use-mirrors cython nose python-dateutil pytz
18
19
if [ ${TRAVIS_PYTHON_VERSION} == "3.2" ]; then
20
sudo apt-get $APT_ARGS install python3-numpy;
21
-fi
22
-
23
-# or else, get it with pip and compile it
24
-if [ ${TRAVIS_PYTHON_VERSION} == "2.6" ]; then
25
- pip $PIP_ARGS install numpy;
26
elif [ ${TRAVIS_PYTHON_VERSION} == "3.3" ]; then # should be >=3,3
27
pip $PIP_ARGS install https://github.com/numpy/numpy/archive/v1.7.0.tar.gz;
+else
+ pip install numpy==1.6.1
28
fi
29
30
# Optional Deps
0 commit comments