[Python-modules-commits] [python-virtualenv] 01/07: Import python-virtualenv_15.0.1+ds.orig.tar.gz
Barry Warsaw
barry at moszumanska.debian.org
Tue Mar 22 15:18:04 UTC 2016
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository python-virtualenv.
commit 2459ce7f242fb3a71c5639aacf77b833191d1be4
Author: Barry Warsaw <barry at python.org>
Date: Tue Mar 22 11:12:45 2016 -0400
Import python-virtualenv_15.0.1+ds.orig.tar.gz
---
PKG-INFO | 26 +++++++++++++-------------
docs/changes.rst | 13 ++++++++++++-
virtualenv.egg-info/PKG-INFO | 26 +++++++++++++-------------
virtualenv.egg-info/SOURCES.txt | 4 ++--
virtualenv.py | 7 ++++++-
5 files changed, 46 insertions(+), 30 deletions(-)
diff --git a/PKG-INFO b/PKG-INFO
index 5482498..dbfda64 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: virtualenv
-Version: 15.0.0
+Version: 15.0.1
Summary: Virtual Python Environment builder
Home-page: https://virtualenv.pypa.io/
Author: Jannis Leidel, Carl Meyer and Brian Rosner
@@ -47,10 +47,21 @@ Description: Virtualenv
Release History
===============
+ 15.0.1 (2016-03-17)
+ -------------------
+
+ * Print error message when DEST_DIR exists and is a file
+
+ * Upgrade setuptools to 20.3
+
+ * Upgrade pip to 8.1.1.
+
+
15.0.0 (2016-03-05)
-------------------
- * Remove the `virtualenv-N.N` script from the package; this can no longer be correctly created from a wheel installation.
+ * Remove the `virtualenv-N.N` script from the package; this can no longer be
+ correctly created from a wheel installation.
Resolves #851, #692
* Remove accidental runtime dependency on pip by extracting certificate in the
@@ -61,17 +72,6 @@ Description: Virtualenv
* Upgrade pip to 8.1.0.
- 14.0.6 (2016-02-07)
- -------------------
-
- * Upgrade setuptools to 20.0
-
- * Upgrade wheel to 0.29.0
-
- * Fix an error where virtualenv didn't pass in a working ssl certificate for
- pip, causing "weird" errors related to ssl.
-
-
`Full Changelog <https://virtualenv.pypa.io/en/latest/changes.html>`_.
Keywords: setuptools deployment installation distutils
Platform: UNKNOWN
diff --git a/docs/changes.rst b/docs/changes.rst
index e8d7bb4..2df19f6 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -1,10 +1,21 @@
Release History
===============
+15.0.1 (2016-03-17)
+-------------------
+
+* Print error message when DEST_DIR exists and is a file
+
+* Upgrade setuptools to 20.3
+
+* Upgrade pip to 8.1.1.
+
+
15.0.0 (2016-03-05)
-------------------
-* Remove the `virtualenv-N.N` script from the package; this can no longer be correctly created from a wheel installation.
+* Remove the `virtualenv-N.N` script from the package; this can no longer be
+ correctly created from a wheel installation.
Resolves :issue:`851`, :issue:`692`
* Remove accidental runtime dependency on pip by extracting certificate in the
diff --git a/virtualenv.egg-info/PKG-INFO b/virtualenv.egg-info/PKG-INFO
index 5482498..dbfda64 100644
--- a/virtualenv.egg-info/PKG-INFO
+++ b/virtualenv.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: virtualenv
-Version: 15.0.0
+Version: 15.0.1
Summary: Virtual Python Environment builder
Home-page: https://virtualenv.pypa.io/
Author: Jannis Leidel, Carl Meyer and Brian Rosner
@@ -47,10 +47,21 @@ Description: Virtualenv
Release History
===============
+ 15.0.1 (2016-03-17)
+ -------------------
+
+ * Print error message when DEST_DIR exists and is a file
+
+ * Upgrade setuptools to 20.3
+
+ * Upgrade pip to 8.1.1.
+
+
15.0.0 (2016-03-05)
-------------------
- * Remove the `virtualenv-N.N` script from the package; this can no longer be correctly created from a wheel installation.
+ * Remove the `virtualenv-N.N` script from the package; this can no longer be
+ correctly created from a wheel installation.
Resolves #851, #692
* Remove accidental runtime dependency on pip by extracting certificate in the
@@ -61,17 +72,6 @@ Description: Virtualenv
* Upgrade pip to 8.1.0.
- 14.0.6 (2016-02-07)
- -------------------
-
- * Upgrade setuptools to 20.0
-
- * Upgrade wheel to 0.29.0
-
- * Fix an error where virtualenv didn't pass in a working ssl certificate for
- pip, causing "weird" errors related to ssl.
-
-
`Full Changelog <https://virtualenv.pypa.io/en/latest/changes.html>`_.
Keywords: setuptools deployment installation distutils
Platform: UNKNOWN
diff --git a/virtualenv.egg-info/SOURCES.txt b/virtualenv.egg-info/SOURCES.txt
index 8e16da6..2524b15 100644
--- a/virtualenv.egg-info/SOURCES.txt
+++ b/virtualenv.egg-info/SOURCES.txt
@@ -40,6 +40,6 @@ virtualenv_embedded/python-config
virtualenv_embedded/site.py
virtualenv_support/__init__.py
virtualenv_support/argparse-1.4.0-py2.py3-none-any.whl
-virtualenv_support/pip-8.1.0-py2.py3-none-any.whl
-virtualenv_support/setuptools-20.2.2-py2.py3-none-any.whl
+virtualenv_support/pip-8.1.1-py2.py3-none-any.whl
+virtualenv_support/setuptools-20.3-py2.py3-none-any.whl
virtualenv_support/wheel-0.29.0-py2.py3-none-any.whl
\ No newline at end of file
diff --git a/virtualenv.py b/virtualenv.py
index 68a5d87..13146f6 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -36,7 +36,7 @@ try:
except ImportError:
import configparser as ConfigParser
-__version__ = "15.0.0"
+__version__ = "15.0.1"
virtualenv_version = __version__ # legacy
if sys.version_info < (2, 6):
@@ -677,6 +677,11 @@ def main():
home_dir = args[0]
+ if os.path.exists(home_dir) and os.path.isfile(home_dir):
+ logger.fatal('ERROR: File already exists and is not a directory.')
+ logger.fatal('Please provide a different path or delete the file.')
+ sys.exit(3)
+
if os.environ.get('WORKING_ENV'):
logger.fatal('ERROR: you cannot run virtualenv while in a workingenv')
logger.fatal('Please deactivate your workingenv, then re-run this script')
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-virtualenv.git
More information about the Python-modules-commits
mailing list