diff options
author | Donald Stufft <donald@stufft.io> | 2018-03-17 10:28:26 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2018-03-17 10:28:26 -0400 |
commit | 2af7eec7c3d2c315fe179a434c030ca44c2cc6d8 (patch) | |
tree | 7901c5424c266d5f6172a7c27a7c9966a115396c | |
parent | faf77a0803576b29ef7cfc02104590508b956fec (diff) | |
download | virtualenv-2af7eec7c3d2c315fe179a434c030ca44c2cc6d8.tar.gz |
Restore support for Python 2.6
-rwxr-xr-x | virtualenv.py | 5 | ||||
-rw-r--r-- | virtualenv_support/wheel-0.29.0-py2.py3-none-any.whl | bin | 0 -> 66878 bytes |
2 files changed, 4 insertions, 1 deletions
diff --git a/virtualenv.py b/virtualenv.py index deec814..6e06eb4 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -937,7 +937,10 @@ def create_environment(home_dir, site_packages=False, clear=False, to_install.append('pip') if not no_wheel: - to_install.append('wheel') + if sys.version_info[:2] == (2, 6): + to_install.append("wheel<0.30") + else: + to_install.append('wheel') if to_install: install_wheel( diff --git a/virtualenv_support/wheel-0.29.0-py2.py3-none-any.whl b/virtualenv_support/wheel-0.29.0-py2.py3-none-any.whl Binary files differnew file mode 100644 index 0000000..506d5e5 --- /dev/null +++ b/virtualenv_support/wheel-0.29.0-py2.py3-none-any.whl |