Skip to content

TST: install numexpr always on travis, bottleneck on full-deps #3768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 6, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions ci/print_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
except:
print("pytz: Not installed")

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor point: should IPython's version be in this script?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't install it
u thinking for command line usage?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i was just thinking that since there's a tiny bit of ipython code for completion and i know that the noseipdb plugin is currently having issues with the latest ipython api (not completion related tho), that it might be useful...

try:
import bottleneck
print("bottleneck: %s" % bottleneck.__version__)
except:
print("bottleneck: Not installed")

try:
import tables
print("PyTables: %s" % tables.__version__)
Expand Down