Skip to content

Commit c279742

Browse files
committed
Reorder imports in vendor to match validation
1 parent bb52e72 commit c279742

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

pkg_resources/extern/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ def install(self):
7777
# cog.outl(f"names = (\n{names}\n)")
7878
# ]]]
7979
names = (
80+
'backports',
81+
'importlib_resources',
82+
'jaraco',
83+
'more_itertools',
8084
'packaging',
8185
'platformdirs',
82-
'jaraco',
83-
'importlib_resources',
8486
'zipp',
85-
'more_itertools',
86-
'backports',
8787
)
8888
# [[[end]]]
8989
VendorImporter(__name__, names).install()

setuptools/extern/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ def install(self):
7777
# cog.outl(f"names = (\n{names}\n)")
7878
# ]]]
7979
names = (
80-
'packaging',
81-
'ordered_set',
82-
'more_itertools',
83-
'jaraco',
84-
'importlib_resources',
80+
'backports',
8581
'importlib_metadata',
86-
'zipp',
82+
'importlib_resources',
83+
'jaraco',
84+
'more_itertools',
85+
'ordered_set',
86+
'packaging',
8787
'tomli',
88-
'backports',
88+
'zipp',
8989
)
9090
# [[[end]]]
9191
VendorImporter(__name__, names, 'setuptools._vendor').install()

0 commit comments

Comments
 (0)