commit f9b09affb6861faf9eeb081842c9e0da9ad5597a from: Jelmer Vernooij via: GitHub date: Tue Jun 11 09:51:50 2024 UTC Skip Mac OS X / arm builds for now (#1330) These have been failing for a while, with no obvious fix. See #1303 for details. commit - d545f2b0ae812d44612fe9465f655d40154f76e4 commit + f9b09affb6861faf9eeb081842c9e0da9ad5597a blob - 51b6481d663de216d27fb1c10b629228ae7b8fdb blob + 0587e4d582b89b15c9d6aebb133308abb47771df --- pyproject.toml +++ pyproject.toml @@ -116,6 +116,7 @@ before-build = "pip install -U setuptools-rust && curl 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 = ["auto", "universal2", "x86_64", "arm64"] +before-all = "rustup target add x86_64-apple-darwin aarch64-apple-darwin" +skip = "cp38-macosx_arm64 cp38-macosx_universal2 cp39-macosx_x86_64 cp39-macosx_universal2 cp310-macosx_x86_64 cp310-macosx_universal2 cp311-macosx_x86_64 cp311-macosx_universal2 cp311-macosx_universal2 cp312-macosx_x86_64 cp312-macosx_universal2"