15
0
Files
python-setuptools/sort-for-reproducibility.patch
Markéta Machová 9abdd234db - Update to v80.9.0
* Set a deadline for the removal of pkg_resources later this year
    (December). (#3085)
  * Removed reliance on pkg_resources in test_wheel. (#3085)
- Release v80.8.0
  * Replaced more references to pkg_resources with importlib
    equivalents in wheel module. (#3085)
  * Restore explicit LICENSE file. (#5001)
- Release v80.7.1
  * Only attempt to fetch eggs for unsatisfied requirements.
    (#4998)
  * In installer, when discovering egg dists, let metadata
    discovery search each egg. (#4998)
- Release v80.7.0
  * Removed usage of pkg_resources from installer. Set an official
    deadline on the installer deprecation to 2025-10-31. (#4997)
- Release v80.5.0
  * Replaced more references to pkg_resources with importlib
    equivalents. (#3085)
- Release v80.4.0
  * Simplified the error reporting in editable installs. (#4984)
- Release v80.3.0
  * Removed easy_install and package_index modules. (#917)
- Release v80.2.0
  * Restored support for install_scripts --executable (and classic
    behavior for the executable for those invocations). Instead,
    build_editable provides the portable form of the executables
    for downstream installers to rewrite. (#4934)
- Release v80.1.0
  * Added a deadline of Oct 31 to the setup.py install deprecation.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools?expand=0&rev=298
2026-01-02 10:09:47 +00:00

41 lines
835 B
Diff

---
setuptools/tests/test_wheel.py | 8 ++++----
--- 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
"""
),