From f5dd49cc1bf8349e5c91a1647d7efa376bfbed41 Mon Sep 17 00:00:00 2001 From: jevans Date: Wed, 9 Oct 2013 21:07:16 -0400 Subject: [PATCH] Must use pip to install numpy on python3, it would seem. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a7335bb..9434d04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: