Skip to content

Commit a30589b

Browse files
committed
Avoid errors on Python 3.8 macos-latest as GitHub CI has dropped support
1 parent 2760eef commit a30589b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ jobs:
6161
- platform: ubuntu-latest
6262
python: "3.10"
6363
distutils: stdlib
64+
# Python 3.9 is on macos-13 but not macos-latest (macos-14-arm64)
65+
# https://github.com/actions/setup-python/issues/850
66+
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
67+
- {python: "3.8", platform: "macos-13"}
68+
exclude:
69+
- {python: "3.8", platform: "macos-latest"}
6470
runs-on: ${{ matrix.platform }}
6571
continue-on-error: ${{ matrix.python == '3.13' }}
6672
env:

0 commit comments

Comments
 (0)