diff options
| -rw-r--r-- | .bumpversion.cfg | 2 | ||||
| -rw-r--r-- | CHANGES.rst | 6 | ||||
| -rw-r--r-- | changelog.d/2143.breaking.rst | 1 | ||||
| -rw-r--r-- | setup.cfg | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 88701727..bee22c9e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 47.3.2 +current_version = 48.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index a8ddb657..d653d889 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +v48.0.0 +------- + +* #2143: Setuptools adopts distutils from the Python 3.9 standard library and no longer depends on distutils in the standard library. When importing ``setuptools`` or ``setuptools.distutils_patch``, Setuptools will expose its bundled version as a top-level ``distutils`` package (and unload any previously-imported top-level distutils package), retaining the expectation that ``distutils``' objects are actually Setuptools objects. Although this change is not expected to break any use cases, it will likely affect tool chains that are monkey-patching distutils or relying on Setuptools' own monkey-patching of distutils. + + v47.3.2 ------- diff --git a/changelog.d/2143.breaking.rst b/changelog.d/2143.breaking.rst deleted file mode 100644 index 244a6989..00000000 --- a/changelog.d/2143.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Setuptools adopts distutils from the Python 3.9 standard library and no longer depends on distutils in the standard library. When importing ``setuptools`` or ``setuptools.distutils_patch``, Setuptools will expose its bundled version as a top-level ``distutils`` package (and unload any previously-imported top-level distutils package), retaining the expectation that ``distutils``' objects are actually Setuptools objects. Although this change is not expected to break any use cases, it will likely affect tool chains that are monkey-patching distutils or relying on Setuptools' own monkey-patching of distutils. @@ -16,7 +16,7 @@ formats = zip [metadata] name = setuptools -version = 47.3.2 +version = 48.0.0 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |
