Skip to content

Commit eb48540

Browse files
committed
TST: install numexpr always on travis, bottleneck on full-deps
1 parent 1111fa1 commit eb48540

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ci/install.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,14 @@ 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
7071

7172
if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then
7273
pip install $PIP_ARGS xlwt
74+
pip install $PIP_ARGS bottleneck
7375
fi
7476

75-
pip install numexpr
76-
pip install tables
77+
pip install $PIP_ARGS tables
7778
pip install $PIP_ARGS matplotlib
7879
pip install $PIP_ARGS openpyxl
7980
pip install $PIP_ARGS xlrd>=0.9.0

ci/print_versions.py

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@
6161
except:
6262
print("pytz: Not installed")
6363

64+
try:
65+
import bottleneck
66+
print("bottleneck: %s" % bottleneck.__version__)
67+
except:
68+
print("bottleneck: Not installed")
69+
6470
try:
6571
import tables
6672
print("PyTables: %s" % tables.__version__)

0 commit comments

Comments
 (0)