update version to 59.4.0

This commit is contained in:
shixuantong 2021-12-01 16:49:05 +08:00
parent b9a770ccfe
commit 53dab19ef5
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(-) 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

@ -9,8 +9,8 @@
%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: 2 Release: 1
Summary: Easily build and distribute Python packages Summary: Easily build and distribute Python packages
License: MIT and (BSD or ASL 2.0) License: MIT and (BSD or ASL 2.0)
@ -110,6 +110,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=
%changelog %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 * Thu Nov 25 2021 shixuantong<shixuantong@huawei.com> - 54.2.0-2
- add bootstrap for rebuild python3-3.10 - add bootstrap for rebuild python3-3.10

Binary file not shown.

BIN
setuptools-59.4.0.tar.gz Normal file

Binary file not shown.