diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-25 10:16:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 10:16:00 (GMT) |
commit | cb4a8c273da848a8b6bd9670e77731f997cb1bbd (patch) | |
tree | 8cd3e99b2725eeb2897d6d4a244e53802f4d0515 | |
parent | d56835f85570b57341e1b44e40f1393bdcd4de82 (diff) | |
download | cpython-cb4a8c273da848a8b6bd9670e77731f997cb1bbd.zip cpython-cb4a8c273da848a8b6bd9670e77731f997cb1bbd.tar.gz cpython-cb4a8c273da848a8b6bd9670e77731f997cb1bbd.tar.bz2 |
[3.12] GH-109190: Copyedit 3.12 What's New: Increase the prominence of the setuptools removal (GH-109768) (#109815)
GH-109190: Copyedit 3.12 What's New: Increase the prominence of the setuptools removal (GH-109768)
(cherry picked from commit 09a73d50f687b9b388b0386f400d9ba5a7c5f2a5)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
-rw-r--r-- | Doc/whatsnew/3.12.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index efb1b13..c2e7068 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -93,6 +93,13 @@ Important deprecations, removals or restrictions: `the migration guide <https://peps.python.org/pep-0632/#migration-advice>`_ for advice on its replacement. +* :gh:`95299`: Do not pre-install ``setuptools`` in virtual environments + created with :mod:`venv`. + This means that ``distutils``, ``setuptools``, ``pkg_resources``, + and ``easy_install`` will no longer available by default; to access these + run ``pip install setuptools`` in the :ref:`activated <venv-explanation>` + virtual environment. + Improved Error Messages ======================= |