Skip to content

Commit 442737d

Browse files
committed
[improvement] Add support for Python 3.13
1 parent 8512c62 commit 442737d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12 ]
20+
python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ]
2121

2222
steps:
2323
- uses: actions/checkout@v4

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Topic :: Software Development :: Libraries :: Python Modules",
3536
]
3637
requires-python = ">=3.8"

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ envlist =
44
py{310}-django{32,40,41,42,50,51}
55
py{311}-django{41,42,50,51}
66
py{312}-django{42,50,51}
7+
py{313}-django{51}
78
isolated_build = True
89

910
[gh-actions]
@@ -13,6 +14,7 @@ python =
1314
3.10: py310
1415
3.11: py311
1516
3.12: py312
17+
3.13: py313
1618

1719
[testenv]
1820
allowlist_externals = ./run.sh

0 commit comments

Comments
 (0)