Skip to content

Commit

Permalink
Set up Python to use native python for macos (Apple Silicon)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael O'Keefe authored and Michael O'Keefe committed Nov 18, 2024
1 parent 2184505 commit 153cc5b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ jobs:
runs-on: ${{ format('{0}-latest', matrix.os) }}
steps:
- uses: actions/checkout@v4
- name: set up python
- name: set up python for MacOS
if: matrix.os == 'macos'
uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: arm64
- name: set up python for non-Mac OS
if: matrix.os != 'macos'
uses: actions/setup-python@v5
with:
python-version: "3.10"
Expand Down

0 comments on commit 153cc5b

Please sign in to comment.