Skip to content

Commit 6405d70

Browse files
committed
ci: change python matrix to add 3.13 and use older ubuntu for python3.7
Fixes #1411
1 parent 10aea09 commit 6405d70

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,19 @@ on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-latest
87
strategy:
98
matrix:
10-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
9+
os:
10+
- ubuntu-latest
11+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
include:
13+
- python-version: '3.7'
14+
os: ubuntu-22.04
15+
exclude:
16+
- python-version: '3.7'
17+
os: ubuntu-latest
1118
fail-fast: false
19+
runs-on: ${{ matrix.os }}
1220
env:
1321
cache-revision: 2
1422
steps:

0 commit comments

Comments
 (0)