Skip to content

Commit

Permalink
Build python module for MacOS arm64 as well (#198)
Browse files Browse the repository at this point in the history
Build python module for arm64 for python 3.11 and 3.12.
  • Loading branch information
manugarg authored Jun 26, 2024
1 parent 2abc352 commit dc2579b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
architecture: [x64]
include:
- os: macos-latest
python-version: "3.11"
architecture: arm64
- os: macos-latest
python-version: "3.12"
architecture: arm64
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -110,7 +118,7 @@ jobs:
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: ${{ matrix.python-version }}
architecture: x64
architecture: ${{ matrix.architecture }}

- name: Set up setuptools
run: |
Expand Down

0 comments on commit dc2579b

Please sign in to comment.