Skip to content

Commit 34b55ce

Browse files
committed
Merge pull request #3891 from jreback/hdf_bld
BLD: install older versions of numexpr/pytables on fulldeps/2 build
2 parents 111ff2b + 77b4205 commit 34b55ce

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

ci/install.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,17 @@ if ( ! $VENV_FILE_AVAILABLE ); then
6767
if [ x"$FULL_DEPS" == x"true" ]; then
6868
echo "Installing FULL_DEPS"
6969
pip install $PIP_ARGS cython
70-
pip install $PIP_ARGS numexpr
7170

7271
if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then
7372
pip install $PIP_ARGS xlwt
7473
pip install $PIP_ARGS bottleneck
74+
pip install $PIP_ARGS numexpr==2.0.1
75+
pip install $PIP_ARGS tables==2.3.1
76+
else
77+
pip install $PIP_ARGS numexpr
78+
pip install $PIP_ARGS tables
7579
fi
7680

77-
pip install $PIP_ARGS tables
7881
pip install $PIP_ARGS matplotlib
7982
pip install $PIP_ARGS openpyxl
8083
pip install $PIP_ARGS xlrd>=0.9.0

0 commit comments

Comments
 (0)