From: Thomas Fillon Date: Thu, 20 Nov 2014 13:56:25 +0000 (+0100) Subject: Travis: pip 1.5 does not allow dependency-links by default X-Git-Tag: 1.5.0rc1~27^2~6 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=180dda4f42ea91abc3b32aaca720f962c7e45cd7;p=telemeta.git Travis: pip 1.5 does not allow dependency-links by default Quoting Pip changelog: BACKWARD INCOMPATIBLE pip no longer respects dependency links by default. Users may opt into respecting them again using --process-dependency-links. --- diff --git a/.travis.yml b/.travis.yml index 412782ca..0cbbe1f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_install: # command to install dependencies install: - pip install -U --no-deps timeside - - pip install -e . + - pip install --process-dependency-links -e . # command to run tests before_script: