From 8c19e7dabe700e189cd59f031c1fe6cebffba6ca Mon Sep 17 00:00:00 2001 From: Nathan Dunfield Date: Mon, 13 Jan 2025 21:09:10 -0600 Subject: [PATCH] CI: build 32bit wheels for Windows --- pyproject.toml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2e6cfc6..5519d98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,8 +32,14 @@ version = {attr = "low_index.__version__"} [tool.cibuildwheel] build = "cp38* cp39* cp310* cp311* cp312* cp313*" skip = "*musllinux*" -archs = "auto64" test-command = "python -m low_index.test" +[tool.cibuildwheel.macos] +archs = "auto64" + [tool.cibuildwheel.linux] -repair-wheel-command = "auditwheel repair --strip -w {dest_dir} {wheel}" \ No newline at end of file +archs = "native" +repair-wheel-command = "auditwheel repair --strip -w {dest_dir} {wheel}" + +[tool.cibuildwheel.windows] +archs = "all"