diff --git a/bugfix-eliminate-random-order-in-metadata.patch b/bugfix-eliminate-random-order-in-metadata.patch index 3ca03e5..fab13f9 100644 --- a/bugfix-eliminate-random-order-in-metadata.patch +++ b/bugfix-eliminate-random-order-in-metadata.patch @@ -13,6 +13,6 @@ reason:eliminate differences of source code if self.provides_extras: - for extra in self.provides_extras: + for extra in sorted(self.provides_extras): - file.write('Provides-Extra: %s\n' % extra) + write_field('Provides-Extra', extra) diff --git a/python-setuptools.spec b/python-setuptools.spec index edd42b3..8b30cdd 100644 --- a/python-setuptools.spec +++ b/python-setuptools.spec @@ -10,8 +10,8 @@ %global python_whlname setuptools-%{version}-py2.py3-none-any.whl Name: python-setuptools -Version: 40.4.3 -Release: 4 +Version: 44.1.1 +Release: 1 Summary: Easily build and distribute Python packages License: MIT and (BSD or ASL 2.0) @@ -144,6 +144,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore= %changelog +* Mon Aug 31 2020 shixuantong - 44.1.1-1 +- update version 44.1.1 + * Wed Oct 30 2019 hexiaowen - 40.4.3-4 - disable tests diff --git a/setuptools-40.4.3.zip b/setuptools-40.4.3.zip deleted file mode 100644 index f408a85..0000000 Binary files a/setuptools-40.4.3.zip and /dev/null differ diff --git a/setuptools-44.1.1.zip b/setuptools-44.1.1.zip new file mode 100644 index 0000000..3b6cfee Binary files /dev/null and b/setuptools-44.1.1.zip differ