add setuptools to the zipapp. resolves #2122

This commit is contained in:
Anthony Sottile
2021-11-30 18:19:36 -05:00
parent d91a4c47f3
commit a737d5fe2f

View File

@@ -71,7 +71,7 @@ def main() -> int:
_msg('populating wheels...')
_exit_if_retv(
'podman', 'run', '--rm', '--volume', f'{wheeldir}:/wheels:rw', IMG,
'pip', 'wheel', f'pre_commit=={args.version}',
'pip', 'wheel', f'pre_commit=={args.version}', 'setuptools',
'--wheel-dir', '/wheels',
)