From ec214f4897afe68bdcded501da32c83fcd073f39 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 1 Feb 2016 07:29:41 +0100 Subject: [PATCH] ci_install: Pin virtualenv to 14.0.3 on Windows. WORKAROUND for https://github.com/pypa/virtualenv/issues/858 --- scripts/dev/ci_install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci_install.py index e2be0163b..ff591c468 100644 --- a/scripts/dev/ci_install.py +++ b/scripts/dev/ci_install.py @@ -87,6 +87,8 @@ if 'APPVEYOR' in os.environ: subprocess.check_call([r'C:\install-PyQt5.exe', '/S']) print("Installing tox...") + # WORKAROUND for https://github.com/pypa/virtualenv/issues/858 + pip_packages.insert(0, 'virtualenv==14.0.3') subprocess.check_call([r'C:\Python34\Scripts\pip', 'install', '-U'] + pip_packages)