Skip to content

Commit b50e280

Browse files
committed
ci
1 parent 233af4e commit b50e280

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,17 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest, macos-latest, windows-latest]
22-
python-version: ["3.8", "3.9", "3.10", "3.11"]
22+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
23+
# Python 3.9 is on macos-13 but not macos-latest (macos-14-arm64)
24+
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
25+
exclude:
26+
- { python-version: "3.8", os: "macos-latest" }
27+
- { python-version: "3.9", os: "macos-latest" }
28+
- { python-version: "3.11", os: "macos-latest" }
29+
include:
30+
- { python-version: "3.8", os: "macos-13" }
31+
- { python-version: "3.9", os: "macos-13" }
32+
- { python-version: "3.11", os: "macos-13" }
2333
defaults:
2434
run:
2535
shell: bash

0 commit comments

Comments
 (0)