Skip to content

Commit 657c82c

Browse files
committed
test on Python 3.13 as well
1 parent 75126fd commit 657c82c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
# https://github.community/t/github-actions-does-not-respect-skip-ci/17325/8
1414
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.x"
2121
- name: Install dependencies
@@ -27,15 +27,15 @@ jobs:
2727
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
2828
strategy:
2929
matrix:
30-
python-version: [3.8, 3.9, "3.10", "3.11", "pypy-3.9"]
30+
python-version: [3.8, "3.10", "3.11", "3.13", "pypy-3.9"]
3131
platform: [ubuntu-latest, windows-latest]
3232
exclude:
3333
- platform: windows-latest
3434
python-version: "pypy-3.9"
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Install dependencies
@@ -62,12 +62,12 @@ jobs:
6262
- test
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6666
with:
6767
# setuptools_scm requires the git clone to not be 'shallow'
6868
fetch-depth: 0
6969
- name: Set up Python
70-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7171
with:
7272
python-version: "3.x"
7373
- name: Install dependencies

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint, py3{8,9,10,11}, pypy3, coverage-report
2+
envlist = lint, py3{8,9,10,11,12,13}, pypy3, coverage-report
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)