We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c0d3f1 commit 6a6b864Copy full SHA for 6a6b864
ci/install.sh
@@ -18,12 +18,10 @@ if [ ${TRAVIS_PYTHON_VERSION} == "3.2" ]; then
18
fi
19
20
# or else, get it with pip and compile it
21
-if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ] || \
22
- [ ${TRAVIS_PYTHON_VERSION} == "3.1" ] || \
23
- [ ${TRAVIS_PYTHON_VERSION} == "3.2" ]; then
+if [ ${TRAVIS_PYTHON_VERSION} == "2.6" ]; then
24
pip $PIP_ARGS install numpy;
25
-else
26
- pip $PIP_ARGS install https://github.com/numpy/numpy/archive/v1.7.0b2.tar.gz;
+elif [ ${TRAVIS_PYTHON_VERSION} == "3.3" ]; then # should be >=3,3
+ pip $PIP_ARGS install https://github.com/numpy/numpy/archive/v1.7.0rc1.tar.gz;
27
28
29
# Optional Deps
0 commit comments