Permalink
Browse files

Travis CI issue identified

The problem with Travis CI is it uses a very old version of pip when
testing on python 2.7. Attempted to add a command to upgrade pip first
before running installation.
  • Loading branch information...
1 parent 9c357d3 commit 3a7a1fc37013b5a717bddb80e43730ba3e78a64e @michaelhush committed Oct 4, 2016
Showing with 2 additions and 1 deletion.
  1. +1 −0 .travis.yml
  2. +1 −1 requirements.txt
View
@@ -3,6 +3,7 @@ python:
- "2.7"
- "3.5"
install:
+ - pip install --upgrade pip
- pip install -r requirements.txt
# command to run tests
script: python setup.py test
View
@@ -1,4 +1,4 @@
-pip>=8.1
+pip>=7.0
docutils>=0.3
numpy>=1.11
scipy>=0.17

0 comments on commit 3a7a1fc

Please sign in to comment.