Skip to content

Commit

Permalink
install numpy and scipy via apt-get to speed up build
Browse files Browse the repository at this point in the history
  • Loading branch information
KEggensperger committed Feb 11, 2015
1 parent b9dd606 commit 0fc3d6c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors

virtualenv:
system_site_packages: true

before_install:
- sudo apt-get install -q libatlas3gf-base libatlas-dev liblapack-dev gfortran
- sudo apt-get install -q python-numpy python-scipy

install:
- easy_install -U distribute
- pip install numpy
- pip install scipy==0.13.2
#- pip install numpy
#- pip install scipy==0.13.2
- pip install matplotlib
- python setup.py install
# command to run tests, e.g. python setup.py test
Expand Down

0 comments on commit 0fc3d6c

Please sign in to comment.