From 721a24fabca9001fcac082a6b4af8f4c7e8dc77b Mon Sep 17 00:00:00 2001 From: Yashas Ambati Date: Thu, 17 Apr 2025 17:34:44 -0400 Subject: [PATCH] Add targets for Mac ARM 64 --- .github/workflows/build-cibw.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/build-cibw.yml b/.github/workflows/build-cibw.yml index 95a2e8dfd..2671ea041 100644 --- a/.github/workflows/build-cibw.yml +++ b/.github/workflows/build-cibw.yml @@ -93,6 +93,24 @@ jobs: cibw_python_version: 313 platform_id: macosx_x86_64 + # MacOS arm64 + - os: macos-14 + python_version: "3.10" + cibw_python_version: 310 + platform_id: macosx_arm64 + - os: macos-14 + python_version: "3.11" + cibw_python_version: 311 + platform_id: macosx_arm64 + - os: macos-14 + python_version: "3.12" + cibw_python_version: 312 + platform_id: macosx_arm64 + - os: macos-14 + python_version: "3.13" + cibw_python_version: 313 + platform_id: macosx_arm64 + steps: - name: Checkout uses: actions/checkout@v4