Skip to content

Commit 0c8b38f

Browse files
committed
Add Python 3.13
1 parent a6a47ef commit 0c8b38f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
37+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
3838
steps:
3939
- name: Checkout repository
4040
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
run: tox
5454

5555
- name: Upload coverage to Codecov
56-
if: matrix.python-version == 3.8 && success()
56+
if: matrix.python-version == 3.10 && success()
5757
uses: codecov/codecov-action@v4
5858
with:
5959
token: ${{ secrets.CODECOV_TOKEN }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def read_file(fname):
5555
'Programming Language :: Python :: 3.10',
5656
'Programming Language :: Python :: 3.11',
5757
'Programming Language :: Python :: 3.12',
58+
'Programming Language :: Python :: 3.13',
5859
],
5960
install_requires=read_file('requirements.txt').splitlines(),
6061
entry_points={

tox.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ envlist =
77
py39
88
py310
99
py311
10-
py311
10+
py312
11+
py313
1112

1213
[testenv]
1314
deps =
@@ -27,8 +28,9 @@ commands = pre-commit run --all-files --show-diff-on-failure
2728
[gh-actions]
2829
python =
2930
3.7: py37
30-
3.8: pep, py38
31+
3.8: py38
3132
3.9: py39
32-
3.10: py310
33+
3.10: pep, py310
3334
3.11: py311
3435
3.12: py312
36+
3.13: py313

0 commit comments

Comments
 (0)