From b634b051c8bd87df02a9e412468c9a32743f25b8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 12 May 2016 12:30:39 +0200 Subject: [PATCH] travis: Set VIRTUALENV_DOWNLOAD=no Things broke because of the virtualenv upgrade in requirements-tox.txt. virtualenv bundles a "good" pip version (good: doesn't suffer from #1486). However the virtualenv upgrade caused us to get a new version which downloads a new pip. Setting VIRTUALENV_DOWNLOAD=no prevents that from happening. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index ddeaa9c1b..c0de91338 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,6 +45,9 @@ cache: before_install: # We need to do this so we pick up the system-wide python properly - 'export PATH="/usr/bin:$PATH"' + # And this to stop virtualenv from upgrading pip, see + # https://github.com/The-Compiler/qutebrowser/issues/1486 + - 'export VIRTUALENV_DOWNLOAD=no' install: - bash scripts/dev/ci/travis_install.sh