Must use pip to install numpy on python3, it would seem.

This commit is contained in:
jevans 2013-10-09 21:07:16 -04:00
commit f5dd49cc1b

View file

@ -7,7 +7,6 @@ python:
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-numpy
- sudo apt-get install -qq python3-numpy
- wget http://openjpeg.googlecode.com/files/openjpeg-1.5.0-Linux-x86_64.tar.gz
- sudo tar -xvf openjpeg-1.5.0-Linux-x86_64.tar.gz --strip-components=1 -C /
@ -15,6 +14,7 @@ before_install:
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors contextlib2 mock ordereddict unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install --use-mirrors contextlib2 mock; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install --use-mirrors numpy; fi
# command to run tests
script: