From 180dda4f42ea91abc3b32aaca720f962c7e45cd7 Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Thu, 20 Nov 2014 14:56:25 +0100 Subject: [PATCH] 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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.39.5