diff options
author | Florian Bruhin <git@the-compiler.org> | 2016-02-01 07:29:41 +0100 |
---|---|---|
committer | Florian Bruhin <git@the-compiler.org> | 2016-02-01 07:29:41 +0100 |
commit | ec214f4897afe68bdcded501da32c83fcd073f39 (patch) | |
tree | 083c429e9be3b9a3a9be2b3ba8ca5bec69b57af4 /scripts | |
parent | b4a54822a0a868b877617300b71ba5e11d3218bf (diff) | |
download | qutebrowser-ec214f4897afe68bdcded501da32c83fcd073f39.tar.gz qutebrowser-ec214f4897afe68bdcded501da32c83fcd073f39.zip |
ci_install: Pin virtualenv to 14.0.3 on Windows.
WORKAROUND for https://github.com/pypa/virtualenv/issues/858
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/dev/ci_install.py | 2 |
1 files changed, 2 insertions, 0 deletions
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) |