Skip to content

Commit

Permalink
build: exclude faulty images from build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdevpl committed Jun 10, 2024
1 parent 1c5eef9 commit fc18198
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11']
exclude:
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: 'pypy3.8'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: 'pypy3.9'
- os: macos-latest
python-version: '3.10'

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit fc18198

Please sign in to comment.