Skip to content

Commit d43a5bf

Browse files
committed
Use macos-13 for Python 3.8 and 3.9
1 parent a7b0978 commit d43a5bf

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,20 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
os: [ubuntu, macos, windows]
34+
os: [ubuntu, macos-13, macos, windows]
3535
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
36+
exclude:
37+
# Python 3.8 and 3.9 are not available on macOS 14
38+
- os: macos-13
39+
python: '3.10'
40+
- os: macos-13
41+
python: '3.11'
42+
- os: macos-13
43+
python: '3.12'
44+
- os: macos
45+
python: '3.8'
46+
- os: macos-13
47+
python: '3.9'
3648

3749
env:
3850
PYTHON: ${{ matrix.python }}

0 commit comments

Comments
 (0)