From eb4854000840c44e337101b62e16ee2431ac6549 Mon Sep 17 00:00:00 2001 From: jreback Date: Wed, 5 Jun 2013 19:56:31 -0400 Subject: [PATCH] TST: install numexpr always on travis, bottleneck on full-deps --- ci/install.sh | 5 +++-- ci/print_versions.py | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ci/install.sh b/ci/install.sh index b748070db85aa..9765f1b26b198 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -67,13 +67,14 @@ if ( ! $VENV_FILE_AVAILABLE ); then if [ x"$FULL_DEPS" == x"true" ]; then echo "Installing FULL_DEPS" pip install $PIP_ARGS cython + pip install $PIP_ARGS numexpr if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install $PIP_ARGS xlwt + pip install $PIP_ARGS bottleneck fi - pip install numexpr - pip install tables + pip install $PIP_ARGS tables pip install $PIP_ARGS matplotlib pip install $PIP_ARGS openpyxl pip install $PIP_ARGS xlrd>=0.9.0 diff --git a/ci/print_versions.py b/ci/print_versions.py index 6a897ea5937b0..53e43fab19ae7 100755 --- a/ci/print_versions.py +++ b/ci/print_versions.py @@ -61,6 +61,12 @@ except: print("pytz: Not installed") +try: + import bottleneck + print("bottleneck: %s" % bottleneck.__version__) +except: + print("bottleneck: Not installed") + try: import tables print("PyTables: %s" % tables.__version__)