Skip to content

Commit

Permalink
Modify travis config to work around pypa/pip#2478
Browse files Browse the repository at this point in the history
  • Loading branch information
jxtx committed Apr 3, 2015
1 parent 639dbcb commit 81d304b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
language: python
python:
- "2.6"
- "2.7"
- 2.6
- 2.7
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libhdf5-serial-dev
- pip install --upgrade pip
install: "pip install -r requirements.txt"
script: "python setup.py test"
install:
# Can't use requirements.txt due to https://github.com/pypa/pip/issues/2478
# - pip install -r requirements.txt
- pip install Cython
- pip install numpy
- pip install scipy
- pip install h5py
script: python setup.py test
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Cython
scipy
numpy
scipy
h5py
mock
mock

0 comments on commit 81d304b

Please sign in to comment.