Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 9db8a4d

Browse files
committed
add pandas to test requirements
1 parent f0af122 commit 9db8a4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

continuous_integration/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export PATH=$HOME/miniconda3/bin:$PATH
2424
# Update conda itself
2525
conda update --yes --quiet conda
2626
PYTHON_VERSION_MAJOR=${TRAVIS_PYTHON_VERSION:0:1}
27-
if [[ $PYTHON_VERSION_MAJOR == '2' ]]; then conda create --quiet --yes -n env_name python=$TRAVIS_PYTHON_VERSION pip Cython=0.22 numpy=1.7 scipy nose matplotlib; fi
28-
if [[ $PYTHON_VERSION_MAJOR == '3' ]]; then conda create --quiet --yes -n env_name python=$TRAVIS_PYTHON_VERSION pip Cython numpy scipy nose matplotlib; fi
27+
if [[ $PYTHON_VERSION_MAJOR == '2' ]]; then conda create --quiet --yes -n env_name python=$TRAVIS_PYTHON_VERSION pip Cython=0.22 numpy=1.7 scipy nose matplotlib pandas; fi
28+
if [[ $PYTHON_VERSION_MAJOR == '3' ]]; then conda create --quiet --yes -n env_name python=$TRAVIS_PYTHON_VERSION pip Cython numpy scipy nose matplotlib pandas; fi
2929
source activate env_name
3030
python -c "import numpy"
3131

0 commit comments

Comments
 (0)