Skip to content

Commit 4a01c06

Browse files
authored
Merge pull request #102 from browniebroke/feat/add-python3.13-support
Add Python 3.13 support
2 parents 1af6040 + c7b42e3 commit 4a01c06

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- "3.10"
2929
- "3.11"
3030
- "3.12"
31+
- "3.13"
3132
steps:
3233
- uses: actions/checkout@v4
3334
- uses: actions/setup-python@v5

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2324
"Programming Language :: Python :: 3 :: Only",
2425
"Framework :: Django",
2526
"Framework :: Django :: 4.2",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
envlist =
33
py{39,310,311}-dj42
44
py{310,311,312}-dj50
5-
py{310,311,312}-dj51
5+
py{310,311,312,313}-dj51
66
skipsdist = True
77

88
[testenv]

0 commit comments

Comments
 (0)