From 3a7a1fc37013b5a717bddb80e43730ba3e78a64e Mon Sep 17 00:00:00 2001 From: Michael Hush Date: Tue, 4 Oct 2016 16:43:12 +1100 Subject: [PATCH] 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. --- .travis.yml | 1 + requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 082208b..e7caa5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/requirements.txt b/requirements.txt index 09e14be..5012a5c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pip>=8.1 +pip>=7.0 docutils>=0.3 numpy>=1.11 scipy>=0.17