From d184d15de9ffb55b818089a02e53209d13faa946 Mon Sep 17 00:00:00 2001 From: "codegen-sh[bot]" <131295404+codegen-sh[bot]@users.noreply.github.com> Date: Wed, 16 Apr 2025 02:09:18 +0000 Subject: [PATCH] fix: add macOS-specific configuration for cibuildwheel to install Rust --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c73fe88c2..ffe5b24f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -254,6 +254,9 @@ manylinux-aarch64-image = "quay.io/pypa/manylinux_2_34_aarch64" [tool.cibuildwheel.linux] before-all = "curl -sSf https://sh.rustup.rs | sh -s -- -y" environment = { "PATH" = "$HOME/.cargo/bin:$PATH" } +[tool.cibuildwheel.macos] +before-all = "curl -sSf https://sh.rustup.rs | sh -s -- -y" +environment = { "PATH" = "$HOME/.cargo/bin:$PATH" } [tool.semantic_release] assets = []