Skip to content

Commit

Permalink
ci: change python matrix to add 3.13 and use older ubuntu for python3.7
Browse files Browse the repository at this point in the history
Fixes #1411
  • Loading branch information
fviard committed Jan 20, 2025
1 parent 10aea09 commit 6405d70
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@ on: [push, pull_request, workflow_dispatch]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os:
- ubuntu-latest
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- python-version: '3.7'
os: ubuntu-22.04
exclude:
- python-version: '3.7'
os: ubuntu-latest
fail-fast: false
runs-on: ${{ matrix.os }}
env:
cache-revision: 2
steps:
Expand Down

0 comments on commit 6405d70

Please sign in to comment.