Skip to content

Commit bed0dd4

Browse files
authored
Merge pull request #178 from rffontenelle/rffontenelle-enable-py313
Enable Python 3.13 in CI and update action versions
2 parents dbc422c + f52599d commit bed0dd4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ jobs:
1818
- "3.10"
1919
- "3.11"
2020
- "3.12"
21+
- "3.13"
2122
- pypy-3.9
2223
- pypy-3.10
2324

2425
steps:
2526
- uses: actions/checkout@v4
26-
- uses: actions/setup-python@v4
27+
- uses: actions/setup-python@v5
2728
with:
2829
python-version: ${{ matrix.python-version }}
2930
allow-prereleases: true
@@ -37,6 +38,6 @@ jobs:
3738
- name: Test with tox
3839
run: |
3940
tox --parallel 0
40-
- uses: codecov/codecov-action@v3
41+
- uses: codecov/codecov-action@v4
4142
with:
4243
file: ./coverage.xml

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ python =
88
3.10: py310
99
3.11: py311
1010
3.12: py312
11+
3.13: py313
1112
pypy-3.9: pypy3
1213
pypy-3.10: pypy3
1314

0 commit comments

Comments
 (0)