File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -78,15 +78,23 @@ conda config --set ssl_verify false || exit 1
78
78
# Useful for debugging any issues with conda
79
79
conda info -a || exit 1
80
80
81
+ REQ=" ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG} .txt"
81
82
conda create -n pandas python=$TRAVIS_PYTHON_VERSION || exit 1
82
- conda install -n pandas --file=ci/requirements- ${TRAVIS_PYTHON_VERSION}${JOB_TAG} .txt || exit 1
83
+ conda install -n pandas --file=${REQ} || exit 1
83
84
84
85
conda install -n pandas pip setuptools nose || exit 1
85
86
conda remove -n pandas pandas
86
87
87
88
source activate pandas
88
89
89
- pip install -U blosc # See https://github.com/pydata/pandas/pull/9783
90
+ # we may have additional pip installs
91
+ REQ=" ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG} .pip"
92
+ if [ -e ${REQ} ]; then
93
+ pip install -r $REQ
94
+ fi
95
+
96
+ # install blosc See https://github.com/pydata/pandas/pull/9783
97
+ pip install -U blosc
90
98
python -c ' import blosc; blosc.print_versions()'
91
99
92
100
# set the compiler cache to work
Original file line number Diff line number Diff line change
1
+ openpyxl
Original file line number Diff line number Diff line change 1
1
python-dateutil
2
2
pytz=2013b
3
- openpyxl=1.6.2
4
3
xlsxwriter=0.4.6
5
4
xlrd=0.9.2
6
5
html5lib=1.0b2
You can’t perform that action at this time.
0 commit comments