diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-12 15:06:30 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-12 15:06:30 +0100 |
commit | 490d640526fc9d7a8cd59939d9904709eac041b6 (patch) | |
tree | 3a7ddf940e12be174623414a411c614d93001921 | |
parent | 0adb305c8b6b1502fa96b595fd3887e9877fa9f7 (diff) | |
download | python-setuptools-git-490d640526fc9d7a8cd59939d9904709eac041b6.tar.gz |
Bump version: 64.0.1 → 64.0.2v64.0.2
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 16 | ||||
-rw-r--r-- | changelog.d/3506.misc.rst | 5 | ||||
-rw-r--r-- | changelog.d/3512.misc.rst | 3 | ||||
-rw-r--r-- | setup.cfg | 2 |
5 files changed, 18 insertions, 10 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e14a394e..617ffcbf 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 64.0.1 +current_version = 64.0.2 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 62eedf4e..3efa5f77 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,19 @@ +v64.0.2 +------- + + +Misc +^^^^ +* #3506: Suppress errors in custom ``build_py`` implementations when running editable + installs in favor of a warning indicating what is the most appropriate + migration path. + This is a *transitional* measure. Errors might be raised in future versions of + ``setuptools``. +* #3512: Added capability of handling namespace packages created + accidentally/purposefully via discovery configuration during editable installs. + This should emulate the behaviour of a non-editable installation. + + v64.0.1 ------- diff --git a/changelog.d/3506.misc.rst b/changelog.d/3506.misc.rst deleted file mode 100644 index 8a388347..00000000 --- a/changelog.d/3506.misc.rst +++ /dev/null @@ -1,5 +0,0 @@ -Suppress errors in custom ``build_py`` implementations when running editable -installs in favor of a warning indicating what is the most appropriate -migration path. -This is a *transitional* measure. Errors might be raised in future versions of -``setuptools``. diff --git a/changelog.d/3512.misc.rst b/changelog.d/3512.misc.rst deleted file mode 100644 index e8e24377..00000000 --- a/changelog.d/3512.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -Added capability of handling namespace packages created -accidentally/purposefully via discovery configuration during editable installs. -This should emulate the behaviour of a non-editable installation. @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 64.0.1 +version = 64.0.2 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |