Skip to content

Commit a4aadfd

Browse files
Use macos-13 for Python 3.8 and 3.9 (#280)
Co-authored-by: David Hewitt <[email protected]>
1 parent a7b0978 commit a4aadfd

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,26 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
os: [ubuntu, macos, windows]
34+
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
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-latest
45+
python: '3.8'
46+
- os: macos-latest
47+
python: '3.9'
3648

3749
env:
3850
PYTHON: ${{ matrix.python }}
3951
OS: ${{ matrix.os }}
4052

41-
runs-on: ${{ matrix.os }}-latest
53+
runs-on: ${{ matrix.os }}
4254

4355
steps:
4456
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)