From: JinWang An Date: Mon, 27 Mar 2023 08:02:49 +0000 (+0900) Subject: Imported Upstream version 62.3.1 X-Git-Tag: upstream/62.3.1^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ba458a6f7101ea44eb40430de8d8134fa832ca54;p=platform%2Fupstream%2Fpython-setuptools.git Imported Upstream version 62.3.1 --- diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8232140..4b8d9d0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 62.3.0 +current_version = 62.3.1 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index be005ad..d301529 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 ------- diff --git a/setup.cfg b/setup.cfg index a4b0333..f4a5473 100644 --- 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 diff --git a/setuptools/dist.py b/setuptools/dist.py index 37021ac..c1ad300 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -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)