From 97dfb55274845eb7acace43f95cc63070426eb33 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Tue, 30 Nov 2021 18:19:36 -0500 Subject: [PATCH] add setuptools to the zipapp. resolves #2122 --- testing/zipapp/make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/zipapp/make b/testing/zipapp/make index 55b6d2c7e..effc81234 100755 --- a/testing/zipapp/make +++ b/testing/zipapp/make @@ -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', )