Imported Upstream version 62.3.1 upstream/62.3.1
authorJinWang An <jinwang.an@samsung.com>
Mon, 27 Mar 2023 08:02:49 +0000 (17:02 +0900)
committerJinWang An <jinwang.an@samsung.com>
Mon, 27 Mar 2023 08:02:49 +0000 (17:02 +0900)
.bumpversion.cfg
CHANGES.rst
setup.cfg
setuptools/dist.py

index 8232140dfffeda117216d779a8ec3fecca36d790..4b8d9d0b7f567d4831c0a32ef935c0f968fcfb2b 100644 (file)
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 62.3.0
+current_version = 62.3.1
 commit = True
 tag = True
 
index be005ad74c23912d386da498f8a3bec95239b1d6..d30152966fcf5e5ad42b84089d4cdeb539b3327f 100644 (file)
@@ -1,3 +1,13 @@
+v62.3.1
+-------
+
+
+Misc
+^^^^
+* #3320: Fixed typo which causes ``namespace_packages`` to raise an error instead of
+  warning.
+
+
 v62.3.0
 -------
 
index a4b0333d7e87c250e0d884ee5d6c6681974723c7..f4a5473f7eca2de5a22ac3601fc40a56181d504e 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = setuptools
-version = 62.3.0
+version = 62.3.1
 author = Python Packaging Authority
 author_email = distutils-sig@python.org
 description = Easily download, build, install, upgrade, and uninstall Python packages
index 37021ac7a143efd64cb01199dc2b7653a60874e6..c1ad30080b4c19d5aa7bca148f5c7c3810f3544f 100644 (file)
@@ -282,7 +282,7 @@ def check_nsp(dist, attr, value):
             )
         msg = (
             "The namespace_packages parameter is deprecated, "
-            "consider using implicit namespaces instead (PEP 420).",
+            "consider using implicit namespaces instead (PEP 420)."
         )
         warnings.warn(msg, SetuptoolsDeprecationWarning)