From 5a79c9d0bcc8ec9de216dca49cf160d38f3c6118 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 13 Feb 2026 17:01:07 -0500 Subject: Only utilize cibuildwheel on linux --- src/lib/delivery/delivery_build.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/delivery/delivery_build.c b/src/lib/delivery/delivery_build.c index 5edcb6d..d1239e4 100644 --- a/src/lib/delivery/delivery_build.c +++ b/src/lib/delivery/delivery_build.c @@ -196,10 +196,9 @@ struct StrList *delivery_build_wheels(struct Delivery *ctx) { if (!strcmp(ctx->system.platform[DELIVERY_PLATFORM], "Linux")) { asprintf(&cmd, "-m cibuildwheel --output-dir %s --only cp%s-manylinux_%s", outdir, ctx->meta.python_compact, ctx->system.arch); } else { - asprintf(&cmd, "-m cibuildwheel --output-dir %s", outdir); + asprintf(&cmd, "-m build -w -o %s", outdir); } - //sprintf(cmd, "-m build -w -o %s", outdir); if (python_exec(cmd)) { fprintf(stderr, "failed to generate wheel package for %s-%s\n", ctx->tests[i].name, ctx->tests[i].version); -- cgit