Skip to content

Commit 6332016

Browse files
committed
make pip install order explicit
1 parent 188fc4f commit 6332016

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ install:
4646
- echo "install"
4747
- conda env create --file ci/requirements-$CONDA_ENV.yml
4848
- source activate test_env # all envs are named test_env in the yml files
49+
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
50+
pip install numpy==1.9.3;
51+
pip install pandas==0.14.1;
52+
fi
4953
- conda list
5054
- echo $PATH
5155
- ls -l /home/travis/miniconda/envs/test_env/lib

ci/requirements-py27-min.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,3 @@ dependencies:
77
- nose
88
- pip:
99
- coveralls
10-
- numpy==1.9.3
11-
- pandas==0.14.1

0 commit comments

Comments
 (0)