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"