Skip to content

Commit

Permalink
Merge pull request #2843 from jonas-lundqvist/gha_exclude_python_vers…
Browse files Browse the repository at this point in the history
…ions

Exclude python versions in GitHub Actions
  • Loading branch information
cculianu committed May 4, 2024
2 parents 87f9dcb + df00299 commit 59c14da
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,30 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
# Only use the python version we package for macos/win
# Better exclude handling would be nice
# (https://github.com/orgs/community/discussions/7835)
- os: macos-latest
python-version: '3.7'
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: '3.10'
- os: macos-latest
python-version: '3.12'
- os: windows-latest
python-version: '3.7'
- os: windows-latest
python-version: '3.8'
- os: windows-latest
python-version: '3.9'
- os: windows-latest
python-version: '3.10'
- os: windows-latest
python-version: '3.12'

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

0 comments on commit 59c14da

Please sign in to comment.