summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernat Gabor <bgabor8@bloomberg.net>2020-02-10 15:00:31 +0000
committerBernat Gabor <bgabor8@bloomberg.net>2020-02-10 15:24:02 +0000
commit17363d5bc520df42d6b3311e5d438f1c2df2a1f5 (patch)
treee8a1cc878586668d9044ab3d04c8b23a05c7026d
parent2378b50b6a31c5e64d1af0dca9c55d9f1c63c789 (diff)
downloadvirtualenv-17363d5bc520df42d6b3311e5d438f1c2df2a1f5.tar.gz
release 20.0.120.0.1
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
-rw-r--r--docs/changelog.rst14
-rw-r--r--docs/changelog/1552.bugfix.rst1
-rw-r--r--docs/changelog/1553.bugfix.rst2
-rw-r--r--src/virtualenv/seed/embed/wheels/__init__.py10
-rw-r--r--src/virtualenv/seed/embed/wheels/setuptools-45.2.0-py3-none-any.whl (renamed from src/virtualenv/seed/embed/wheels/setuptools-45.1.0-py3-none-any.whl)bin583923 -> 584228 bytes
5 files changed, 19 insertions, 8 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 6dea3dd..441e84f 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,20 @@ Release History
.. towncrier release notes start
+v20.0.1 (2020-02-10)
+--------------------
+
+Features - 20.0.1
+~~~~~~~~~~~~~~~~~
+- upgrade embedded setuptools to ``45.2.0`` from ``45.1.0`` for Python ``3.4+`` - by :user:`gaborbernat`. (`#1554 <https://github.com/pypa/virtualenv/issues/1554>`_)
+
+Bugfixes - 20.0.1
+~~~~~~~~~~~~~~~~~
+- Virtual environments created via relative path on Windows creates bad console executables - by :user:`gaborbernat`. (`#1552 <https://github.com/pypa/virtualenv/issues/1552>`_)
+- Seems sometimes venvs created set their base executable to themselves; we accept these without question, so we handle
+ virtual environments as system pythons causing issues - by :user:`gaborbernat`. (`#1553 <https://github.com/pypa/virtualenv/issues/1553>`_)
+
+
v20.0.0. (2020-02-10)
---------------------
diff --git a/docs/changelog/1552.bugfix.rst b/docs/changelog/1552.bugfix.rst
deleted file mode 100644
index a57f2a7..0000000
--- a/docs/changelog/1552.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Virtual environments created via relative path on Windows creates bad console executables - by :user:`gaborbernat`.
diff --git a/docs/changelog/1553.bugfix.rst b/docs/changelog/1553.bugfix.rst
deleted file mode 100644
index 2084dc9..0000000
--- a/docs/changelog/1553.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Seems sometimes venvs created set their base executable to themselves; we accept these without question, so we handle
-virtual environments as system pythons causing issues - by :user:`gaborbernat`.
diff --git a/src/virtualenv/seed/embed/wheels/__init__.py b/src/virtualenv/seed/embed/wheels/__init__.py
index 0a4745e..b008a06 100644
--- a/src/virtualenv/seed/embed/wheels/__init__.py
+++ b/src/virtualenv/seed/embed/wheels/__init__.py
@@ -3,27 +3,27 @@ from __future__ import absolute_import, unicode_literals
BUNDLE_SUPPORT = {
"3.9": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
- "setuptools": "setuptools-45.1.0-py3-none-any.whl",
+ "setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
- "setuptools": "setuptools-45.1.0-py3-none-any.whl",
+ "setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
- "setuptools": "setuptools-45.1.0-py3-none-any.whl",
+ "setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.6": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
- "setuptools": "setuptools-45.1.0-py3-none-any.whl",
+ "setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.5": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
- "setuptools": "setuptools-45.1.0-py3-none-any.whl",
+ "setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.4": {
diff --git a/src/virtualenv/seed/embed/wheels/setuptools-45.1.0-py3-none-any.whl b/src/virtualenv/seed/embed/wheels/setuptools-45.2.0-py3-none-any.whl
index f8895e3..10ff63f 100644
--- a/src/virtualenv/seed/embed/wheels/setuptools-45.1.0-py3-none-any.whl
+++ b/src/virtualenv/seed/embed/wheels/setuptools-45.2.0-py3-none-any.whl
Binary files differ