From 0e6c6d3750dd9dd88e8aa88d17c932da18111cb4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 1 Feb 2016 08:40:21 +0100 Subject: [PATCH] Revert "ci_install: Pin virtualenv to 14.0.3 on Windows." This reverts commit ec214f4897afe68bdcded501da32c83fcd073f39. Fixed upstream in virtualenv 14.0.5. --- scripts/dev/ci_install.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci_install.py index ff591c468..e2be0163b 100644 --- a/scripts/dev/ci_install.py +++ b/scripts/dev/ci_install.py @@ -87,8 +87,6 @@ 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)