Skip to content

Commit

Permalink
ci: exclude 3.8 and 3.9 from osx, seems like runners are broken
Browse files Browse the repository at this point in the history
  • Loading branch information
karlicoss committed Apr 24, 2024
1 parent c7ad182 commit 9c5af6d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ jobs:
matrix:
platform: [ubuntu-latest, macos-latest] #, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
# vvv just an example of excluding stuff from matrix
# exclude: [{platform: macos-latest, python-version: '3.6'}]
exclude: [
# 3.8 and 3.9 aren't available on latest macos M1 runners
# see https://github.com/actions/setup-python/issues/808
{platform: macos-latest, python-version: '3.8'},
{platform: macos-latest, python-version: '3.9'},
]

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

Expand Down

0 comments on commit 9c5af6d

Please sign in to comment.