From b79c06121d8e40d8b2d2db0a4dd0a60fbf48edba Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Tue, 25 Mar 2014 20:56:35 -0400 Subject: [PATCH] another pip try --- .travis.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 74d5c462..e5703f65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,15 +45,16 @@ install: sudo pip install flake8; else travis_retry sudo apt-get -qq -y install python3-numpy && + # Because python3-pip is musteriously missing from apt: curl http://python-distribute.org/distribute_setup.py | sudo python3 && curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python3 && - which pip; - which pip3; - which pip-3; - which pip3.2; - which pip-3.2; - sudo pip-3.2 install pytest && - sudo pip-3.2 install flake8; +# which pip; +# which pip3; +# which pip-3; +# which pip3.2; +# which pip-3.2; + sudo pip3.2 install pytest && + sudo pip3.2 install flake8; fi; # Qt @@ -90,7 +91,7 @@ install: travis_retry sudo apt-get -qq -y install python-opengl; else echo "Using OpenGL stable version (pip)"; - pip-3.2 install -q PyOpenGL; + pip3.2 install -q PyOpenGL; fi;