From caa78ec1d69e7760b41318f4f4b304ba2b8ed88a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 10 Jun 2024 18:37:30 +0100 Subject: [PATCH] Skip Mac OS X / arm64 builds for now These have been failing for a while, with no obvious fix. See #1303 for details. --- pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 51b6481d6..f1c283da9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,6 +116,9 @@ before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf skip = "*-musllinux_*" archs = ["auto", "aarch64"] -[[tool.cibuildwheel.overrides]] -select = "*-macosx_arm64" -before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup target add x86_64-apple-darwin" +[tool.cibuildwheel.macos] +archs = ["universal2", "x86_64"] + +[[tool.cibuildwheel.override]] +select = "*-macosx_x86_64" +before-build = "rustup target add x86_64-apple-darwin"