Skip to content

Commit

Permalink
GitHub CI: exclude Windows with Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mhvis committed Jan 21, 2025
1 parent f918aa1 commit 9733a7a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
strategy:
matrix:
os:
- 'ubuntu-24.04'
- 'windows-2022'
- 'ubuntu-latest'
- 'windows-latest'
python-version:
- '3.8'
- '3.9'
Expand All @@ -23,10 +23,12 @@ jobs:
- '3.12'
- '3.13'
exclude:
- os: 'windows-2022'
- os: 'windows-latest'
python-version: '3.8'
- os: 'windows-2022'
- os: 'windows-latest'
python-version: '3.9'
- os: 'windows-latest'
python-version: '3.10'

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

Expand Down

0 comments on commit 9733a7a

Please sign in to comment.