14
0
Files
python-setuptools/sort-for-reproducibility.patch
Matej Cepl 111d56bea9 Accepting request 1255200 from system:homeautomation:home-assistant:unstable
- update to 77.0.3:
  * Temporarily convert error for license glob patterns containing
    ../ into a deprecation warning to allow an accomodation period
  * Better error messages for packaging.
  * Avoided eagerly raising an exception when license-files is
    defined simultaneously inside and outside of pyproject.toml.
  * Added initial support for license expression (PEP 639)
  * Store License-Files in .dist-info/licenses subfolder and
    added support for recursive globs for license_files (PEP 639)
  * Bump core metadata version to 2.4.
  * Updated vendored copy of wheel to v0.45.1

OBS-URL: https://build.opensuse.org/request/show/1255200
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools?expand=0&rev=288
2025-03-24 07:07:06 +00:00

54 lines
1.4 KiB
Diff

---
setuptools/command/easy_install.py | 2 +-
setuptools/tests/test_wheel.py | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -436,7 +436,7 @@ class easy_install(Command):
for spec in self.args:
self.easy_install(spec, not self.no_deps)
if self.record:
- outputs = self.outputs
+ outputs = list(sorted(self.outputs))
if self.root: # strip any package prefix
root_len = len(self.root)
for counter in range(len(outputs)):
--- a/setuptools/tests/test_wheel.py
+++ b/setuptools/tests/test_wheel.py
@@ -417,30 +417,30 @@ WHEEL_INSTALL_TESTS: tuple[dict[str, Any
dict(
id='requires_ensure_order',
install_requires="""
- foo
bar
baz
+ foo
qux
""",
extras_require={
'extra': """
- foobar>3
barbaz>4
bazqux>5
+ foobar>3
quxzap>6
""",
},
requires_txt=DALS(
"""
- foo
bar
baz
+ foo
qux
[extra]
- foobar>3
barbaz>4
bazqux>5
+ foobar>3
quxzap>6
"""
),