!20 upgrade version to 59.4.0

Merge pull request !20 from renxichen/openEuler-22.03-LTS-Next
This commit is contained in:
openeuler-ci-bot 2021-12-27 01:15:03 +00:00 committed by Gitee
commit 1d82935e78
4 changed files with 10 additions and 7 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

@ -6,7 +6,7 @@
%global python_whlname setuptools-%{version}-py3-none-any.whl
Name: python-setuptools
Version: 54.2.0
Version: 59.4.0
Release: 1
Summary: Easily build and distribute Python packages
@ -95,6 +95,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=
%changelog
* Wed Dec 22 2021 renhongxun<renhongxun@huawei.com> - 59.4.0-1
- upgrade version to 59.4.0
* Mon Mar 29 2021 shixuantong<shixuantong@huawei.com> - 54.2.0-1
- upgrade version to 54.2.0

Binary file not shown.

BIN
setuptools-59.4.0.tar.gz Normal file

Binary file not shown.