Skip to content

Commit 1faca16

Browse files
author
y-p
committed
Merge pull request #2378 from y-p/fix1
BLD: modify travis to install numpy 1.6.2+fixes on py3
2 parents 08f8b57 + 09a8711 commit 1faca16

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,29 @@ python:
55
- 2.7
66
- 3.1
77
- 3.2
8-
# - 3.3
8+
- 3.3
99

1010
matrix:
1111
include:
1212
- python: 2.7
1313
env: VBENCH=true
1414

1515
allow_failures:
16-
# - python: 3.3 # until travis yograde to 1.8.4
16+
- python: 3.3 # until travis upgrade to 1.8.4
1717
- python: 2.7
1818
env: VBENCH=true
1919

2020
install:
2121
- virtualenv --version
22+
- date
2223
- whoami
2324
- pwd
2425
- echo $VBENCH
2526
# install 1.7.0b2 for 3.3, and pull a version of numpy git master
2627
# with a alternate fix for detach bug as a temporary workaround
2728
# for the others.
28-
- 'if [ $TRAVIS_PYTHON_VERSION == "3.3" ]; then pip uninstall numpy; pip install http://downloads.sourceforge.net/project/numpy/NumPy/1.7.0b2/numpy-1.7.0b2.tar.gz; fi'
29-
- 'if [ $TRAVIS_PYTHON_VERSION == "3.2" ] || [ $TRAVIS_PYTHON_VERSION == "3.1" ]; then pip install --use-mirrors git+git://github.com/numpy/numpy.git@089bfa5865cd39e2b40099755e8563d8f0d04f5f#egg=numpy; fi'
29+
- 'if [ $TRAVIS_PYTHON_VERSION == "3.3" ]; then pip uninstall numpy; pip install https://github.com/numpy/numpy/archive/v1.7.0b2.tar.gz; fi'
30+
- 'if [ $TRAVIS_PYTHON_VERSION == "3.2" ] || [ $TRAVIS_PYTHON_VERSION == "3.1" ]; then pip install https://github.com/y-p/numpy/archive/1.6.2_with_travis_fix.tar.gz; fi'
3031
- 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install numpy; fi' # should be nop if pre-installed
3132
- pip install --use-mirrors cython nose pytz python-dateutil;
3233

0 commit comments

Comments
 (0)