Skip to content

Commit 111a44d

Browse files
committed
Support Python 3.13
1 parent a823eaa commit 111a44d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.12'
18+
python-version: '3.13'
1919
cache: 'pip'
2020
cache-dependency-path: 'requirements/*.txt'
2121
- name: Run tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def read(filename):
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3637
"Framework :: Django",
3738
"Framework :: Django :: 2.2",
3839
"Framework :: Django :: 3.2",

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ commands = make test
2222
package = editable
2323

2424
[testenv:check]
25-
basepython = python3.12
25+
basepython = python3.13
2626
commands = make check
2727

2828
[testenv:lint]
29-
basepython = python3.12
29+
basepython = python3.13
3030
commands = make lint
3131

3232
[testenv:coverage]
33-
basepython = python3.12
33+
basepython = python3.13
3434
commands = make coverage-report

0 commit comments

Comments
 (0)