Skip to content

Commit 4df1d2c

Browse files
committed
ci: also test Python 3.13
1 parent 3506b7f commit 4df1d2c

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1919
os: [ubuntu-latest]
2020
include:
2121
- os: macos-latest
22-
python-version: '3.12'
22+
python-version: '3.13'
2323
- os: windows-latest
24-
python-version: '3.12'
24+
python-version: '3.13'
2525

2626
steps:
2727
- uses: actions/checkout@v4
@@ -38,13 +38,14 @@ jobs:
3838

3939
- run: pytest
4040

41+
4142
coverage:
4243
runs-on: ubuntu-latest
43-
name: Python ${{ matrix.python-version }}
44+
name: Coverage Python ${{ matrix.python-version }}
4445

4546
strategy:
4647
matrix:
47-
python-version: ["3.12"]
48+
python-version: ["3.13"]
4849

4950
steps:
5051
- uses: actions/checkout@v4

.github/workflows/ci_stdlib_only.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1919
os: ['ubuntu-latest']
2020
include:
2121
- os: macos-latest
22-
python-version: '3.12'
22+
python-version: '3.13'
2323
- os: windows-latest
24-
python-version: '3.12'
24+
python-version: '3.13'
2525

2626
steps:
2727
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)