MAINT: Put scipy back in travis reqs.

This commit is contained in:
Scott Sanderson
2016-07-28 13:50:21 -04:00
parent 659c8ae5ee
commit 78dd69c5a6
+2 -2
View File
@@ -9,7 +9,7 @@ env:
# ANACONDA_TOKEN with api:write
- secure: "RJJjjQloUjCSkhII93QM+YAsr6YYq7hPFvlbnT07ogn1NeUPsVCyJ97oiZfKtPgdbd24hdQP/CHfB0HgTTES8n996tN3QWc4hZj0e10kFyIlas9qnkrRYRR1jxGShBDXrLdx/tGh8z1qnnCm1fy+fDhAF7Zerouwy4EA2YEzxdE="
matrix:
- NUMPY_VERSION=1.11.1
- NUMPY_VERSION=1.11.1 SCIPY_VERSION=0.18.0
cache:
directories:
- $HOME/.cache/.pip/
@@ -23,7 +23,7 @@ install:
- conda install conda=4.1.11 conda-build=1.21.11 anaconda-client=1.5.1 --yes
- TALIB_VERSION=$(cat ./etc/requirements_talib.txt | sed "s/TA-Lib==\(.*\)/\1/")
- conda create -n testenv --yes -c quantopian pip python=$TRAVIS_PYTHON_VERSION numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION libgfortran=1.0 ta-lib=$TALIB_VERSION
- conda create -n testenv --yes -c quantopian pip python=$TRAVIS_PYTHON_VERSION numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION libgfortran=3.0 ta-lib=$TALIB_VERSION
- source activate testenv
- IFS='.' read -r -a NPY_VERSION_ARR <<< "$NUMPY_VERSION"
- CONDA_NPY=${NPY_VERSION_ARR[0]}${NPY_VERSION_ARR[1]}