File tree 1 file changed +7
-10
lines changed 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 12
12
before_install :
13
13
- mkdir builds
14
14
- pushd builds
15
- - pip install http://switch.dl.sourceforge.net/project/numpy/NumPy/${NUMPY_VER}/numpy-${NUMPY_VER}.tar.gz
15
+ - pip install -q http://switch.dl.sourceforge.net/project/numpy/NumPy/${NUMPY_VER}/numpy-${NUMPY_VER}.tar.gz
16
16
- sudo apt-get install libatlas-dev libatlas-base-dev liblapack-dev gfortran
17
- # 0.11.0 is the last scipy version with python 2.5 support
18
- # but 0.12.0 seems to be needed for py 3.3 support
19
- # notice the weird inversion here, since for exit values 0 = true, 1 = false
20
- - if python -c 'import sys; sys.exit(not(sys.version_info < (3, 3)))'; then pip install --use-mirrors scipy==0.11.0; else pip install --use-mirrors scipy; fi
21
- # current pandas requires python 2.6+
22
- - if python -c 'import sys; sys.exit(not (sys.version_info >= (2, 6)))'; then pip install --use-mirrors pandas; fi
23
- - pip install --use-mirrors coverage
17
+ - pip install -q scipy
18
+ # pandas 0.14.0 blows up on python 2.6:
19
+ # https://github.com/pydata/pandas/issues/7284
20
+ - pip install -q pandas==0.13.1
21
+ - pip install -q coverage
24
22
- popd
25
23
- python -V
26
24
- which nosetests
@@ -45,5 +43,4 @@ notifications:
45
43
email :
46
44
47
45
after_success :
48
- # current coveralls requires python 2.6+
49
- - if python -c 'import sys; sys.exit(not (sys.version_info >= (2, 6)))'; then pip install --use-mirrors coveralls && coveralls; fi
46
+ - pip install -q coveralls && coveralls
You can’t perform that action at this time.
0 commit comments