Skip to content

Commit

Permalink
remove MacOS Python 3.13 Vanilla test due to lack of wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Dec 13, 2024
1 parent 91864b4 commit 3b85cd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ jobs:
platform:
- ubuntu-latest
- macos-latest
exclude:
- python: py313
platform: macos-latest
steps:
- name: "🛒 Checkout"
uses: actions/checkout@v4
Expand Down
6 changes: 5 additions & 1 deletion workflows/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ const test_matrix = {
install: "vanilla",
key: "vanilla",
name: "Vanilla Python ${{matrix.python}} on ${{matrix.platform}}",
matrix: { "python": PYTHONS, "platform": VANILLA_PLATFORMS },
matrix: {
python: PYTHONS,
platform: VANILLA_PLATFORMS,
exclude: [{ python: "py313", platform: "macos-latest" }],
},
}),
nojit: testJob({
install: "conda",
Expand Down

0 comments on commit 3b85cd5

Please sign in to comment.