From fe740dbb68b4c8974d0d7907ecca6a6024ba6112 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sun, 10 Apr 2016 17:36:27 +0100 Subject: [PATCH] dev-requirements.txt: add virtualenv>=15.0 as Appveyor ships with an old one virtualenv is required by tox. Appveyor ships with virtualenv 13.x or something. tox works fine with that. However, virtualenv install its own embedded version of pip in the newly created environments. When we install the requirements.txt, pip complains that pip is not up-to-date. Updating virtualenv makes pip stop complaining. Woosh. --- dev-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-requirements.txt b/dev-requirements.txt index 18e00b343..2a70be7e8 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,2 +1,3 @@ pytest>=2.8 +virtualenv>=15.0 tox>=2.3