diff options
author | Donald Stufft <donald@stufft.io> | 2016-01-21 19:48:34 -0500 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-01-21 19:48:34 -0500 |
commit | 2fd5f65f464ae6da8f5d5da0980c64b101a71957 (patch) | |
tree | 10451ee731aa38b95467e85ad324d8bf48ddb8ea | |
parent | 4ac44d2a1508e86d78e06fa158373e723f3b4dcb (diff) | |
parent | 684d14a8bd7497ff6bbea5328b96b1dab2b4c9a4 (diff) | |
download | virtualenv-2fd5f65f464ae6da8f5d5da0980c64b101a71957.tar.gz |
Merge branch 'develop'14.0.1
-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 |