Skip to content

Commit 250e3be

Browse files
committed
fixed travis file
1 parent b9c0c2d commit 250e3be

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@
33
#
44

55
language: python
6+
env:
7+
- PYTHON=python PYSUF='' PYVER=2.7
8+
- PYTHON=python3 PYSUF='3' PYVER=3.2
69
python:
710
- "2.7"
811
- "3.2"
9-
- "3.3"
1012
# command to install dependencies
1113
install:
12-
- "pip install -r requirements.txt --use-mirrors"
14+
- sudo apt-get update # needed for python3-numpy
15+
- sudo apt-get install $PYTHON-dev
16+
- sudo apt-get install $PYTHON-numpy
17+
- sudo apt-get install $PYTHON-scipy
18+
- sudo apt-get install $PYTHON-setuptools
19+
- sudo apt-get install $PYTHON-nose
1320
- "sudo python setup.py build install"
1421
# command to run tests
1522
script: nosetests

0 commit comments

Comments
 (0)