Skip to content

Commit

Permalink
Travis: Move pytables to pip since it requires numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Dec 11, 2018
1 parent b9721bf commit 7843b29
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ cache:
# osx-specific caches
- $HOME/Library/Caches/pip

addons:
apt:
packages:
- hdf5-tools
homebrew:
packages:
- hdf5

matrix:
include:
- python: 3.6
Expand All @@ -24,11 +32,6 @@ matrix:
- pip install virtualenv
- virtualenv env -p python3
- source env/bin/activate
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -u -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- conda update --yes conda

notifications:
email: false
Expand All @@ -37,19 +40,8 @@ branches:
only:
- master

before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -u -b -p /home/travis/miniconda
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
#- sudo rm -rf /dev/shm
#- sudo ln -s /run/shm /dev/shm

install:
- pip install -U pip numpy scipy pandas numba sympy ipython statsmodels
- conda install --yes nose python=$TRAVIS_PYTHON_VERSION pytables
# To Install Full Anaconda Stack (conda install --yes python=$TRAVIS_PYTHON_VERSION anaconda)
- pip install -U pip numpy scipy pandas numba sympy ipython statsmodels tables
- pip install coveralls coverage
- python setup.py install

Expand Down

0 comments on commit 7843b29

Please sign in to comment.