summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2023-01-18 07:50:37 -0800
committerBernát Gábor <bgabor8@bloomberg.net>2023-01-18 07:50:37 -0800
commit7eec0251e6885fd025f745949c584f8ca44ffbb6 (patch)
treee9ae2ad2afb7e82dd00f883fa72e077eec1420ca
parent8323aaa78a00425b598b093ea0eae82b228fe6d6 (diff)
downloadtox-git-7eec0251e6885fd025f745949c584f8ca44ffbb6.tar.gz
release 4.3.54.3.5
-rw-r--r--docs/changelog.rst17
-rw-r--r--docs/changelog/2880.bugfix.rst10
2 files changed, 17 insertions, 10 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 236ce1e1..5b99534c 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,6 +4,23 @@ Release History
.. towncrier release notes start
+v4.3.5 (2023-01-18)
+-------------------
+
+Bugfixes - 4.3.5
+~~~~~~~~~~~~~~~~
+- When building a ``wheel`` or ``editable`` package with a PEP 517 backend, no
+ longer pass an empty ``metadata_directory`` to the backend ``build_wheel`` or
+ ``build_editable`` endpoint.
+
+ Some backends, such as PDM and poetry, will not generate package metadata in
+ the presence of a ``metadata_directory``, even if it is empty.
+
+ Prior to this change, attempting to install a wheel created by tox using PDM or
+ poetry would return an error like "There is no item named
+ 'my-package.0.1.dist-info/WHEEL' in the archive" - by :user:`masenf`. (:issue:`2880`)
+
+
v4.3.4 (2023-01-17)
-------------------
diff --git a/docs/changelog/2880.bugfix.rst b/docs/changelog/2880.bugfix.rst
deleted file mode 100644
index 2ab4c11c..00000000
--- a/docs/changelog/2880.bugfix.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-When building a ``wheel`` or ``editable`` package with a PEP 517 backend, no
-longer pass an empty ``metadata_directory`` to the backend ``build_wheel`` or
-``build_editable`` endpoint.
-
-Some backends, such as PDM and poetry, will not generate package metadata in
-the presence of a ``metadata_directory``, even if it is empty.
-
-Prior to this change, attempting to install a wheel created by tox using PDM or
-poetry would return an error like "There is no item named
-'my-package.0.1.dist-info/WHEEL' in the archive" - by :user:`masenf`.