upgrade version to 59.4.0

This commit is contained in:
rwx403335 2021-12-22 11:47:00 +08:00
parent 09ac4705e7
commit f94ed2ef5e
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(-) 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setuptools/dist.py b/setuptools/dist.py diff --git a/setuptools/dist.py b/setuptools/dist.py
index f0f030b..d22e533 100644 index fb16886..86a5402 100644
--- a/setuptools/dist.py --- a/setuptools/dist.py
+++ b/setuptools/dist.py +++ b/setuptools/dist.py
@@ -194,7 +194,7 @@ def write_pkg_file(self, file): @@ -208,7 +208,7 @@ def write_pkg_file(self, file): # noqa: C901 # is too complex (14) # FIXME
self.long_description_content_type if self.long_description_content_type:
) write_field('Description-Content-Type', self.long_description_content_type)
if self.provides_extras: if self.provides_extras:
- for extra in self.provides_extras: - for extra in self.provides_extras:
+ for extra in sorted(self.provides_extras): + for extra in sorted(self.provides_extras):
write_field('Provides-Extra', extra) 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 %global python_whlname setuptools-%{version}-py3-none-any.whl
Name: python-setuptools Name: python-setuptools
Version: 54.2.0 Version: 59.4.0
Release: 1 Release: 1
Summary: Easily build and distribute Python packages Summary: Easily build and distribute Python packages
@ -95,6 +95,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=
%changelog %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 * Mon Mar 29 2021 shixuantong<shixuantong@huawei.com> - 54.2.0-1
- upgrade version to 54.2.0 - upgrade version to 54.2.0

Binary file not shown.

BIN
setuptools-59.4.0.tar.gz Normal file

Binary file not shown.