Skip to content

Commit 61a6f0d

Browse files
committed
Add python 3.13
1 parent 293c560 commit 61a6f0d

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Python
4242
uses: actions/setup-python@v5
4343
with:
44-
python-version: '3.8'
44+
python-version: '3.10'
4545

4646
- name: Install dependencies
4747
run: python -m pip install --upgrade pip setuptools wheel

.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
@@ -54,7 +54,7 @@ jobs:
5454
run: tox
5555

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

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def read_file(fname):
4646
'Programming Language :: Python :: 3.10',
4747
'Programming Language :: Python :: 3.11',
4848
'Programming Language :: Python :: 3.12',
49+
'Programming Language :: Python :: 3.13',
4950
],
5051
install_requires=read_file('requirements.txt').splitlines(),
5152
)

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ envlist =
88
py310
99
py311
1010
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.12: py313

0 commit comments

Comments
 (0)