diff options
author | Bernát Gábor <gaborjbernat@gmail.com> | 2023-04-27 16:37:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 16:37:05 -0700 |
commit | cd057163eea02bca2ef0fba4f80b11bdd8dbd5f8 (patch) | |
tree | dc69ce4b2e1f6a7a8a78a17da5595e54407eb7af | |
parent | fd93dd79be89b21e6e9d43ca2dd1b02b811f6d6f (diff) | |
parent | 6327f153bb0366c3c332f3814a6bcd0223cb4e26 (diff) | |
download | virtualenv-cd057163eea02bca2ef0fba4f80b11bdd8dbd5f8.tar.gz |
Merge pull request #2563 from pypa/release-20.23.0
-rw-r--r-- | docs/changelog.rst | 20 | ||||
-rw-r--r-- | docs/changelog/2487.feature.rst | 6 | ||||
-rw-r--r-- | docs/changelog/2543.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/2558.feature.rst | 1 | ||||
-rw-r--r-- | docs/changelog/2560.bugfix.rst | 1 |
5 files changed, 20 insertions, 10 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index ac7f7db..b54d691 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,26 @@ Release History .. towncrier release notes start +v20.23.0 (2023-04-27) +--------------------- + +Features - 20.23.0 +~~~~~~~~~~~~~~~~~~ +- Do not install ``wheel`` and ``setuptools`` seed packages for Python 3.12+. To restore the old behaviour use: + + - for ``wheel`` use ``VIRTUALENV_WHEEL=bundle`` environment variable or ``--wheel=bundle`` CLI flag, + - for ``setuptools`` use ``VIRTUALENV_SETUPTOOLS=bundle`` environment variable or ``--setuptools=bundle`` CLI flag. + + By :user:`chrysle`. (:issue:`2487`) +- 3.12 support - by :user:`gaborbernat`. (:issue:`2558`) + +Bugfixes - 20.23.0 +~~~~~~~~~~~~~~~~~~ +- Prevent ``PermissionError`` when using venv creator on systems that deliver files without user write + permission - by :user:`kulikjak`. (:issue:`2543`) +- Upgrade setuptools to ``67.7.2`` from ``67.6.1`` and pip to ``23.1.2`` from ``23.1`` - by :user:`szleb`. (:issue:`2560`) + + v20.22.0 (2023-04-19) --------------------- diff --git a/docs/changelog/2487.feature.rst b/docs/changelog/2487.feature.rst deleted file mode 100644 index 12cc896..0000000 --- a/docs/changelog/2487.feature.rst +++ /dev/null @@ -1,6 +0,0 @@ -Do not install ``wheel`` and ``setuptools`` seed packages for Python 3.12+. To restore the old behaviour use: - -- for ``wheel`` use ``VIRTUALENV_WHEEL=bundle`` environment variable or ``--wheel=bundle`` CLI flag, -- for ``setuptools`` use ``VIRTUALENV_SETUPTOOLS=bundle`` environment variable or ``--setuptools=bundle`` CLI flag. - -By :user:`chrysle`. diff --git a/docs/changelog/2543.bugfix.rst b/docs/changelog/2543.bugfix.rst deleted file mode 100644 index 5f0d6ca..0000000 --- a/docs/changelog/2543.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Prevent ``PermissionError`` when using venv creator on systems that deliver files without user write -permission - by :user:`kulikjak`. diff --git a/docs/changelog/2558.feature.rst b/docs/changelog/2558.feature.rst deleted file mode 100644 index 58b627a..0000000 --- a/docs/changelog/2558.feature.rst +++ /dev/null @@ -1 +0,0 @@ -3.12 support - by :user:`gaborbernat`. diff --git a/docs/changelog/2560.bugfix.rst b/docs/changelog/2560.bugfix.rst deleted file mode 100644 index 1c67b41..0000000 --- a/docs/changelog/2560.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Upgrade setuptools to ``67.7.2`` from ``67.6.1`` and pip to ``23.1.2`` from ``23.1`` - by :user:`szleb`. |