Skip to content

Commit

Permalink
restrict python versions to 3.9 - 3.13
Browse files Browse the repository at this point in the history
but ad test for python 3.7 and 3.8 where they are available
  • Loading branch information
lfarv committed Dec 16, 2024
1 parent b90e44d commit 86e40c0
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,19 @@ jobs:

strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
os: [macos-latest, ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
python-version: '3.7'
- os: macos-latest
python-version: '3.7'
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: '3.9'
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
include:
- os: macos-13
python-version: '3.7'
- os: macos-13
python-version: '3.8'
- os: macos-13
python-version: '3.9'
- os: ubuntu-22.04
python-version: '3.7'
- os: ubuntu-22.04
python-version: '3.8'
- os: windows-latest
python-version: '3.8'


steps:
Expand Down

0 comments on commit 86e40c0

Please sign in to comment.