[Python-modules-commits] [python-virtualenv] 01/07: Import python-virtualenv_15.1.0+ds.orig.tar.gz
Barry Warsaw
barry at moszumanska.debian.org
Thu Dec 1 23:08:03 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 6feb59786db60b88c1771f1d787175a9cfc5e3f1
Author: Barry Warsaw <barry at python.org>
Date: Thu Dec 1 17:36:27 2016 -0500
Import python-virtualenv_15.1.0+ds.orig.tar.gz
---
PKG-INFO | 23 ++++++++++++-----------
docs/changes.rst | 12 ++++++++++++
virtualenv.egg-info/PKG-INFO | 23 ++++++++++++-----------
virtualenv.egg-info/SOURCES.txt | 4 ++--
virtualenv.py | 5 +++--
5 files changed, 41 insertions(+), 26 deletions(-)
diff --git a/PKG-INFO b/PKG-INFO
index 75c8a96..11f5c75 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: virtualenv
-Version: 15.0.3
+Version: 15.1.0
Summary: Virtual Python Environment builder
Home-page: https://virtualenv.pypa.io/
Author: Jannis Leidel, Carl Meyer and Brian Rosner
@@ -47,27 +47,28 @@ Description: Virtualenv
Release History
===============
- 15.0.3 (2016-08-05)
+ 15.1.0 (2016-11-15)
-------------------
- * Test for given python path actually being an executable *file*, #939
+ * Support Python 3.6.
- * Only search for copy actual existing Tcl/Tk directories (PR #937)
+ * Upgrade setuptools to 28.0.0.
- * Generically search for correct Tcl/Tk version (PR #926, PR #933)
+ * Upgrade pip to 9.0.1.
+
+ * Don't install pre-release versions of pip, setuptools, or wheel from PyPI.
- * Upgrade setuptools to 22.0.5
- 15.0.2 (2016-05-28)
+ 15.0.3 (2016-08-05)
-------------------
- * Copy Tcl/Tk libs on Windows to allow them to run,
- fixes #93 (PR #888)
+ * Test for given python path actually being an executable *file*, #939
- * Upgrade setuptools to 21.2.1.
+ * Only search for copy actual existing Tcl/Tk directories (PR #937)
- * Upgrade pip to 8.1.2.
+ * Generically search for correct Tcl/Tk version (PR #926, PR #933)
+ * Upgrade setuptools to 22.0.5
`Full Changelog <https://virtualenv.pypa.io/en/latest/changes.html>`_.
Keywords: setuptools deployment installation distutils
diff --git a/docs/changes.rst b/docs/changes.rst
index ac11113..63833cc 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -1,6 +1,18 @@
Release History
===============
+15.1.0 (2016-11-15)
+-------------------
+
+* Support Python 3.6.
+
+* Upgrade setuptools to 28.0.0.
+
+* Upgrade pip to 9.0.1.
+
+* Don't install pre-release versions of pip, setuptools, or wheel from PyPI.
+
+
15.0.3 (2016-08-05)
-------------------
diff --git a/virtualenv.egg-info/PKG-INFO b/virtualenv.egg-info/PKG-INFO
index 75c8a96..11f5c75 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.3
+Version: 15.1.0
Summary: Virtual Python Environment builder
Home-page: https://virtualenv.pypa.io/
Author: Jannis Leidel, Carl Meyer and Brian Rosner
@@ -47,27 +47,28 @@ Description: Virtualenv
Release History
===============
- 15.0.3 (2016-08-05)
+ 15.1.0 (2016-11-15)
-------------------
- * Test for given python path actually being an executable *file*, #939
+ * Support Python 3.6.
- * Only search for copy actual existing Tcl/Tk directories (PR #937)
+ * Upgrade setuptools to 28.0.0.
- * Generically search for correct Tcl/Tk version (PR #926, PR #933)
+ * Upgrade pip to 9.0.1.
+
+ * Don't install pre-release versions of pip, setuptools, or wheel from PyPI.
- * Upgrade setuptools to 22.0.5
- 15.0.2 (2016-05-28)
+ 15.0.3 (2016-08-05)
-------------------
- * Copy Tcl/Tk libs on Windows to allow them to run,
- fixes #93 (PR #888)
+ * Test for given python path actually being an executable *file*, #939
- * Upgrade setuptools to 21.2.1.
+ * Only search for copy actual existing Tcl/Tk directories (PR #937)
- * Upgrade pip to 8.1.2.
+ * Generically search for correct Tcl/Tk version (PR #926, PR #933)
+ * Upgrade setuptools to 22.0.5
`Full Changelog <https://virtualenv.pypa.io/en/latest/changes.html>`_.
Keywords: setuptools deployment installation distutils
diff --git a/virtualenv.egg-info/SOURCES.txt b/virtualenv.egg-info/SOURCES.txt
index 25b9437..40ba997 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.2-py2.py3-none-any.whl
-virtualenv_support/setuptools-22.0.5-py2.py3-none-any.whl
+virtualenv_support/pip-9.0.1-py2.py3-none-any.whl
+virtualenv_support/setuptools-28.8.0-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 14706b0..42cd1f4 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -36,7 +36,7 @@ try:
except ImportError:
import configparser as ConfigParser
-__version__ = "15.0.3"
+__version__ = "15.1.0"
virtualenv_version = __version__ # legacy
if sys.version_info < (2, 6):
@@ -155,6 +155,8 @@ elif majver == 3:
'_collections_abc',
'_bootlocale',
])
+ if minver >= 6:
+ REQUIRED_MODULES.extend(['enum'])
if is_pypy:
# these are needed to correctly display the exceptions that may happen
@@ -889,7 +891,6 @@ def install_wheel(project_names, py_executable, search_dirs=None,
"PIP_FIND_LINKS": findlinks,
"PIP_USE_WHEEL": "1",
"PIP_ONLY_BINARY": ":all:",
- "PIP_PRE": "1",
"PIP_USER": "0",
}
--
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