diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-07-13 18:06:55 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-07-13 18:06:55 -0400 |
commit | f747e8bca333a45aaf7fbc58fa1ce12c663bebe3 (patch) | |
tree | 7e61cc334572f3bc8f586185a85ba82d7cf6c874 | |
parent | b1353f7e0dd345d799c3e3133daee687871b30e5 (diff) | |
download | python-setuptools-git-f747e8bca333a45aaf7fbc58fa1ce12c663bebe3.tar.gz |
Bump version: 63.1.0 → 63.2.0v63.2.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 14 | ||||
-rw-r--r-- | changelog.d/3395.change.rst | 2 | ||||
-rw-r--r-- | changelog.d/3435.misc.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
5 files changed, 16 insertions, 5 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 284f7c1e..bcbe8935 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 63.1.0 +current_version = 63.2.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index c85d6dc9..6a9f0b23 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,17 @@ +v63.2.0 +------- + + +Changes +^^^^^^^ +* #3395: Included a performance optimization: ``setuptools.build_meta`` no longer tries + to :func:`compile` the setup script code before :func:`exec`-ing it. + +Misc +^^^^ +* #3435: Corrected issue in macOS framework builds on Python 3.9 not installed by homebrew (pypa/distutils#158). + + v63.1.0 ------- diff --git a/changelog.d/3395.change.rst b/changelog.d/3395.change.rst deleted file mode 100644 index f4947074..00000000 --- a/changelog.d/3395.change.rst +++ /dev/null @@ -1,2 +0,0 @@ -Included a performance optimization: ``setuptools.build_meta`` no longer tries -to :func:`compile` the setup script code before :func:`exec`-ing it. diff --git a/changelog.d/3435.misc.rst b/changelog.d/3435.misc.rst deleted file mode 100644 index 82780290..00000000 --- a/changelog.d/3435.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Corrected issue in macOS framework builds on Python 3.9 not installed by homebrew (pypa/distutils#158). @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 63.1.0 +version = 63.2.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |