File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,14 @@ if ( ! $VENV_FILE_AVAILABLE ); then
67
67
if [ x" $FULL_DEPS " == x" true" ]; then
68
68
echo " Installing FULL_DEPS"
69
69
pip install $PIP_ARGS cython
70
+ pip install $PIP_ARGS numexpr
70
71
71
72
if [ ${TRAVIS_PYTHON_VERSION: 0: 1} == " 2" ]; then
72
73
pip install $PIP_ARGS xlwt
74
+ pip install $PIP_ARGS bottleneck
73
75
fi
74
76
75
- pip install numexpr
76
- pip install tables
77
+ pip install $PIP_ARGS tables
77
78
pip install $PIP_ARGS matplotlib
78
79
pip install $PIP_ARGS openpyxl
79
80
pip install $PIP_ARGS xlrd> =0.9.0
Original file line number Diff line number Diff line change 61
61
except :
62
62
print ("pytz: Not installed" )
63
63
64
+ try :
65
+ import bottleneck
66
+ print ("bottleneck: %s" % bottleneck .__version__ )
67
+ except :
68
+ print ("bottleneck: Not installed" )
69
+
64
70
try :
65
71
import tables
66
72
print ("PyTables: %s" % tables .__version__ )
You can’t perform that action at this time.
0 commit comments