2024-05-03 22:57:47 +02:00
|
|
|
---
|
|
|
|
setuptools/command/easy_install.py | 2 +-
|
|
|
|
setuptools/command/egg_info.py | 2 +-
|
|
|
|
setuptools/dist.py | 2 +-
|
|
|
|
setuptools/tests/test_egg_info.py | 2 +-
|
|
|
|
setuptools/tests/test_wheel.py | 8 ++++----
|
|
|
|
5 files changed, 8 insertions(+), 8 deletions(-)
|
|
|
|
|
2024-09-13 16:26:10 +02:00
|
|
|
Index: setuptools-70.0.0/setuptools/command/easy_install.py
|
2024-05-03 22:57:47 +02:00
|
|
|
===================================================================
|
2024-09-13 16:26:10 +02:00
|
|
|
--- setuptools-70.0.0.orig/setuptools/command/easy_install.py
|
|
|
|
+++ setuptools-70.0.0/setuptools/command/easy_install.py
|
|
|
|
@@ -436,7 +436,7 @@ class easy_install(Command):
|
2024-05-03 22:57:47 +02:00
|
|
|
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)):
|
2024-09-13 16:26:10 +02:00
|
|
|
Index: setuptools-70.0.0/setuptools/tests/test_wheel.py
|
2024-05-03 22:57:47 +02:00
|
|
|
===================================================================
|
2024-09-13 16:26:10 +02:00
|
|
|
--- setuptools-70.0.0.orig/setuptools/tests/test_wheel.py
|
|
|
|
+++ setuptools-70.0.0/setuptools/tests/test_wheel.py
|
|
|
|
@@ -411,30 +411,30 @@ WHEEL_INSTALL_TESTS = (
|
2024-05-03 22:57:47 +02:00
|
|
|
dict(
|
|
|
|
id='requires_ensure_order',
|
2024-09-13 16:26:10 +02:00
|
|
|
install_requires="""
|
2024-05-03 22:57:47 +02:00
|
|
|
- foo
|
|
|
|
bar
|
|
|
|
baz
|
|
|
|
+ foo
|
|
|
|
qux
|
2024-09-13 16:26:10 +02:00
|
|
|
""",
|
2024-05-03 22:57:47 +02:00
|
|
|
extras_require={
|
2024-09-13 16:26:10 +02:00
|
|
|
'extra': """
|
2024-05-03 22:57:47 +02:00
|
|
|
- foobar>3
|
|
|
|
barbaz>4
|
|
|
|
bazqux>5
|
|
|
|
+ foobar>3
|
|
|
|
quxzap>6
|
2024-09-13 16:26:10 +02:00
|
|
|
""",
|
2024-05-03 22:57:47 +02:00
|
|
|
},
|
|
|
|
requires_txt=DALS(
|
2024-09-13 16:26:10 +02:00
|
|
|
"""
|
2024-05-03 22:57:47 +02:00
|
|
|
- foo
|
|
|
|
bar
|
|
|
|
baz
|
|
|
|
+ foo
|
|
|
|
qux
|
|
|
|
|
|
|
|
[extra]
|
|
|
|
- foobar>3
|
|
|
|
barbaz>4
|
|
|
|
bazqux>5
|
|
|
|
+ foobar>3
|
|
|
|
quxzap>6
|
2024-09-13 16:26:10 +02:00
|
|
|
"""
|
2024-05-03 22:57:47 +02:00
|
|
|
),
|