diff options
-rw-r--r-- | docs/changes.rst | 8 | ||||
-rwxr-xr-x | virtualenv.py | 3 | ||||
-rw-r--r-- | virtualenv_support/pip-8.0.2-py2.py3-none-any.whl (renamed from virtualenv_support/pip-8.0.0-py2.py3-none-any.whl) | bin | 1188709 -> 1188805 bytes |
3 files changed, 10 insertions, 1 deletions
diff --git a/docs/changes.rst b/docs/changes.rst index 95416fd..5529c40 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,14 @@ Release History =============== +14.0.1 (2016-01-21) +------------------- + +* Upgrade from pip 8.0.0 to 8.0.2. + +* Fix the default of ``--(no-)download`` to default to downloading. + + 14.0.0 (2016-01-19) ------------------- diff --git a/virtualenv.py b/virtualenv.py index 4f5b119..c4f025a 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -33,7 +33,7 @@ try: except ImportError: import configparser as ConfigParser -__version__ = "14.0.0" +__version__ = "14.0.1" virtualenv_version = __version__ # legacy if sys.version_info < (2, 6): @@ -608,6 +608,7 @@ def main(): parser.add_option( "--download", dest="download", + default=True, action="store_true", help="Download preinstalled packages from PyPI.", ) diff --git a/virtualenv_support/pip-8.0.0-py2.py3-none-any.whl b/virtualenv_support/pip-8.0.2-py2.py3-none-any.whl Binary files differindex 4e685be..cff6237 100644 --- a/virtualenv_support/pip-8.0.0-py2.py3-none-any.whl +++ b/virtualenv_support/pip-8.0.2-py2.py3-none-any.whl |