Skip to content

Commit 57e4aad

Browse files
committed
ci: exclude 3.8 and 3.9 from osx, seems like runners are broken
1 parent c697ebc commit 57e4aad

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ jobs:
2626
matrix:
2727
platform: [ubuntu-latest, macos-latest] #, windows-latest]
2828
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
29-
# vvv just an example of excluding stuff from matrix
30-
# exclude: [{platform: macos-latest, python-version: '3.6'}]
29+
exclude: [
30+
# 3.8 and 3.9 aren't available on latest macos M1 runners
31+
# see https://github.com/actions/setup-python/issues/808
32+
{platform: macos-latest, python-version: '3.8'},
33+
{platform: macos-latest, python-version: '3.9'},
34+
]
3135

3236
runs-on: ${{ matrix.platform }}
3337

0 commit comments

Comments
 (0)