Imported Upstream version 51.3.3 upstream/51.3.3
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 18 Jul 2022 06:38:56 +0000 (15:38 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 18 Jul 2022 06:38:56 +0000 (15:38 +0900)
CHANGES.rst
PKG-INFO
setup.cfg
setuptools.egg-info/PKG-INFO
setuptools/dist.py

index 2de874c..c094960 100644 (file)
@@ -1,3 +1,12 @@
+v51.3.3
+-------
+
+
+Misc
+^^^^
+* #2539: Fix AttributeError in Description validation.
+
+
 v51.3.2
 -------
 
index 4e2b021..b38faf7 100644 (file)
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: setuptools
-Version: 51.3.2
+Version: 51.3.3
 Summary: Easily download, build, install, upgrade, and uninstall Python packages
 Home-page: https://github.com/pypa/setuptools
 Author: Python Packaging Authority
index 627fce3..1ebb777 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
 license_files = 
        LICENSE
 name = setuptools
-version = 51.3.2
+version = 51.3.3
 author = Python Packaging Authority
 author_email = distutils-sig@python.org
 description = Easily download, build, install, upgrade, and uninstall Python packages
index 4e2b021..b38faf7 100644 (file)
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: setuptools
-Version: 51.3.2
+Version: 51.3.3
 Summary: Easily download, build, install, upgrade, and uninstall Python packages
 Home-page: https://github.com/pypa/setuptools
 Author: Python Packaging Authority
index 172d66b..050388d 100644 (file)
@@ -122,7 +122,7 @@ def single_line(val):
     # quick and dirty validation for description pypa/setuptools#1390
     if '\n' in val:
         # TODO after 2021-07-31: Replace with `raise ValueError("newlines not allowed")`
-        warnings.UserWarning("newlines not allowed and will break in the future")
+        warnings.warn("newlines not allowed and will break in the future")
         val = val.replace('\n', ' ')
     return val