diff options
| -rw-r--r-- | .bumpversion.cfg | 2 | ||||
| -rw-r--r-- | CHANGES.rst | 16 | ||||
| -rw-r--r-- | changelog.d/3497.misc.rst | 1 | ||||
| -rw-r--r-- | changelog.d/3502.misc.rst | 1 | ||||
| -rw-r--r-- | changelog.d/3503.misc.rst | 6 | ||||
| -rw-r--r-- | setup.cfg | 2 |
6 files changed, 18 insertions, 10 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9141b766..e14a394e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 64.0.0 +current_version = 64.0.1 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 3c42bce3..20aba6cf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,19 @@ +v64.0.1 +------- + + +Misc +^^^^ +* #3497: Fixed ``editable_wheel`` for legacy namespaces. +* #3502: Fixed issue with editable install and single module distributions. +* #3503: Added filter to ignore external ``.egg-info`` files in manifest. + + Some plugins might rely on the fact that the ``.egg-info`` directory is + produced inside the project dir, which may not be the case in editable installs + (the ``.egg-info`` directory is produced inside the metadata directory given by + the build frontend via PEP 660 hooks). + + v64.0.0 ------- diff --git a/changelog.d/3497.misc.rst b/changelog.d/3497.misc.rst deleted file mode 100644 index 69c35993..00000000 --- a/changelog.d/3497.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ``editable_wheel`` for legacy namespaces. diff --git a/changelog.d/3502.misc.rst b/changelog.d/3502.misc.rst deleted file mode 100644 index 5955c3ca..00000000 --- a/changelog.d/3502.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed issue with editable install and single module distributions. diff --git a/changelog.d/3503.misc.rst b/changelog.d/3503.misc.rst deleted file mode 100644 index 7cfb9883..00000000 --- a/changelog.d/3503.misc.rst +++ /dev/null @@ -1,6 +0,0 @@ -Added filter to ignore external ``.egg-info`` files in manifest. - -Some plugins might rely on the fact that the ``.egg-info`` directory is -produced inside the project dir, which may not be the case in editable installs -(the ``.egg-info`` directory is produced inside the metadata directory given by -the build frontend via PEP 660 hooks). @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 64.0.0 +version = 64.0.1 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |
