diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-09-25 06:22:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 06:22:00 (GMT) |
commit | 09a73d50f687b9b388b0386f400d9ba5a7c5f2a5 (patch) | |
tree | db061443806ff1f1dad3b5c65af28790c91b4de8 /Doc | |
parent | e81bd3fa16b05e2f359105eb77da976390488d81 (diff) | |
download | cpython-09a73d50f687b9b388b0386f400d9ba5a7c5f2a5.zip cpython-09a73d50f687b9b388b0386f400d9ba5a7c5f2a5.tar.gz cpython-09a73d50f687b9b388b0386f400d9ba5a7c5f2a5.tar.bz2 |
GH-109190: Copyedit 3.12 What's New: Increase the prominence of the setuptools removal (#109768)
Diffstat (limited to 'Doc')
-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 700daea..33ddd53 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 ======================= |