Skip to content

Commit

Permalink
ci: test Python wasm with ARM macOS
Browse files Browse the repository at this point in the history
Hopefully faster and more reliable.

actions/setup-python only supports 3.11 and newer for macOS ARM.
  • Loading branch information
thewtex committed Apr 12, 2024
1 parent ae66f92 commit ffbebcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
max-parallel: 5
matrix:
os: [ubuntu-22.04, windows-2022, macos-12]
python-minor-version: [8, 9, 10, 11]
os: [ubuntu-22.04, windows-2022, macos-14]
python-minor-version: [11]
package: [compress-stringify, compare-images, dicom, mesh-io, image-io, downsample]

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python ${{ env.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}

Expand Down

0 comments on commit ffbebcb

Please sign in to comment.