From d13d39171abb4b4917b94235e0f7efd5a6ff2e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 5 May 2024 10:28:53 +0100 Subject: [PATCH] Attempt to fix macosx wheels --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 32c1d81b7..8e4a67422 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -115,3 +115,7 @@ before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf [tool.cibuildwheel.linux] skip = "*-musllinux_*" + +[[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"