We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c0c2d commit 250e3beCopy full SHA for 250e3be
.travis.yml
@@ -3,13 +3,20 @@
3
#
4
5
language: python
6
+env:
7
+ - PYTHON=python PYSUF='' PYVER=2.7
8
+ - PYTHON=python3 PYSUF='3' PYVER=3.2
9
python:
10
- "2.7"
11
- "3.2"
- - "3.3"
12
# command to install dependencies
13
install:
- - "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
20
- "sudo python setup.py build install"
21
# command to run tests
22
script: nosetests
0 commit comments