From dc527c152bd74a9e6680db619933316f3c4b73d8 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 19 Jun 2024 12:12:36 -0400 Subject: [PATCH] Expand changelog to provide more context. Ref #3593 --- NEWS.rst | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 265e545d54..5c3f5b4319 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -139,7 +139,19 @@ v69.3.0 Features -------- -- Support PEP 625 by canonicalizing package name and version in filenames. (#3593) +- Support PEP 625 by canonicalizing package name and version in filenames + per + `the spec `_. + Projects whose names contain uppercase characters, dashes, or periods will + now see their sdist names normalized to match the standard and the format + previously seen in wheels. For example: + + - ``zope.interface`` -> ``zope_interface`` + - ``CherryPy`` -> ``cherrypy`` + - ``foo-bar_baz`` -> ``foo_bar_baz`` + + Projects are encouraged to adopt this change to align with standards and + other backend build systems. (#3593) v69.2.0