Skip to content

Commit cf8942f

Browse files
authored
Add support for Python 3.13 (#457)
1 parent 6fe54e9 commit cf8942f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
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
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919
os: [ubuntu-24.04]
2020
runs-on: ${{ matrix.os }}
2121
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def get_version():
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
"Framework :: Django :: 4.2",
5960
"Framework :: Django :: 5.0",
6061
"Framework :: Django :: 5.1",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
min_version = 4.4
33
envlist =
44
{py39,py310,py311,py312}-django420-{end2end,unittests}
5-
{py310,py311,py312}-django{500,510}-{end2end,unittests}
5+
{py310,py311,py312,py313}-django{500,510}-{end2end,unittests}
66
py39-lint
77

88
[gh-actions]
@@ -11,6 +11,7 @@ python =
1111
3.10: py310
1212
3.11: py311
1313
3.12: py312
14+
3.13: py313
1415

1516
[testenv]
1617
deps =

0 commit comments

Comments
 (0)