Skip to content

Commit

Permalink
fixed install of tables (called pytables in conda)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmokinCaterpillar committed Aug 6, 2014
1 parent 623e099 commit 1118eda
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -59,7 +59,7 @@ install:
- echo "+++++++++++ Installing Cython $CYTHON_VERSION +++++++++++++"
- if [[ $NEWEST == TRUE ]]; then conda install cython; else pip install cython==$CYTHON_VERSION; fi
- echo "+++++++++++ Installing PyTables $TABLES_VERSION +++++++++++++"
- if [[ $NEWEST == TRUE ]]; then conda install tables; else pip install tables==$TABLES_VERSION; fi
- if [[ $NEWEST == TRUE ]]; then conda install pytables; else pip install tables==$TABLES_VERSION; fi
- echo "+++++++++++ Installing pandas $PANDAS_VERSION +++++++++++++"
- if [[ $NEWEST == TRUE ]]; then conda install pandas; else pip install pandas==$PANDAS_VERSION; fi
- echo "+++++++++++ Installing Brian if Python 2.7 +++++++++++"
Expand Down
4 changes: 4 additions & 0 deletions pypet/tests/run_all_examples.py
@@ -1,3 +1,7 @@
"""Module running all examples in the examples directory
Suppresses all openings of plots
"""
__author__ = 'Robert Meyer'

import matplotlib
Expand Down
1 change: 1 addition & 0 deletions runtests.sh
Expand Up @@ -12,6 +12,7 @@ if [[ $COVERAGE == ON ]]

if [[ $EXAMPLES == ON ]]
then
conda install matplotlib
cd pypet/tests
python run_all_examples.py
cd ..
Expand Down

0 comments on commit 1118eda

Please sign in to comment.