Skip to content

Commit

Permalink
Reorder imports in vendor to match validation
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed May 10, 2024
1 parent bb52e72 commit c279742
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions pkg_resources/extern/__init__.py
Expand Up @@ -77,13 +77,13 @@ def install(self):
# cog.outl(f"names = (\n{names}\n)")
# ]]]
names = (
'backports',
'importlib_resources',
'jaraco',
'more_itertools',
'packaging',
'platformdirs',
'jaraco',
'importlib_resources',
'zipp',
'more_itertools',
'backports',
)
# [[[end]]]
VendorImporter(__name__, names).install()
14 changes: 7 additions & 7 deletions setuptools/extern/__init__.py
Expand Up @@ -77,15 +77,15 @@ def install(self):
# cog.outl(f"names = (\n{names}\n)")
# ]]]
names = (
'packaging',
'ordered_set',
'more_itertools',
'jaraco',
'importlib_resources',
'backports',
'importlib_metadata',
'zipp',
'importlib_resources',
'jaraco',
'more_itertools',
'ordered_set',
'packaging',
'tomli',
'backports',
'zipp',
)
# [[[end]]]
VendorImporter(__name__, names, 'setuptools._vendor').install()

0 comments on commit c279742

Please sign in to comment.