!16 update version to 59.4.0

From: @tong_1001
Reviewed-by: @openeuler-basic
Signed-off-by: @openeuler-basic
This commit is contained in:
openeuler-ci-bot 2021-12-01 09:07:07 +00:00 committed by Gitee
commit 0b19534a34
4 changed files with 11 additions and 8 deletions

View File

@ -8,18 +8,18 @@ Subject: [PATCH] bugfix eliminate random order in metadata
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setuptools/dist.py b/setuptools/dist.py
index f0f030b..d22e533 100644
index fb16886..86a5402 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -194,7 +194,7 @@ def write_pkg_file(self, file):
self.long_description_content_type
)
@@ -208,7 +208,7 @@ def write_pkg_file(self, file): # noqa: C901 # is too complex (14) # FIXME
if self.long_description_content_type:
write_field('Description-Content-Type', self.long_description_content_type)
if self.provides_extras:
- for extra in self.provides_extras:
+ for extra in sorted(self.provides_extras):
write_field('Provides-Extra', extra)
self._write_list(file, 'License-File', self.license_files or [])
--
2.23.0
1.8.3.1

View File

@ -9,8 +9,8 @@
%global python_whlname setuptools-%{version}-py3-none-any.whl
Name: python-setuptools
Version: 54.2.0
Release: 2
Version: 59.4.0
Release: 1
Summary: Easily build and distribute Python packages
License: MIT and (BSD or ASL 2.0)
@ -110,6 +110,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=
%changelog
* Wed Dec 01 2021 shixuantong<shixuantong@huawei.com> - 59.4.0-1
- update version to 59.4.0
* Thu Nov 25 2021 shixuantong<shixuantong@huawei.com> - 54.2.0-2
- add bootstrap for rebuild python3-3.10

Binary file not shown.

BIN
setuptools-59.4.0.tar.gz Normal file

Binary file not shown.