Skip to content

Commit 100574e

Browse files
committed
[#144] Add Python-3.13 support
1 parent 101ab83 commit 100574e

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
max-parallel: 5
1212
matrix:
13-
python-version: ['3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1414
django-version: ['4.2', '5.0', '5.1']
1515
exclude:
1616
- django-version: '5.0'
@@ -19,6 +19,10 @@ jobs:
1919
python-version: '3.9'
2020
- django-version: 'main'
2121
python-version: '3.9'
22+
- django-version: '4.2'
23+
python-version: '3.13'
24+
- django-version: '5.0'
25+
python-version: '3.13'
2226

2327
services:
2428
postgres:

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ General:
88

99
Features:
1010

11+
* #144 Add Python-3.13 support.
1112
* #141 Drop Django-3.2, 4.0 support.
1213
* #142 Drop Python-3.8 support.
1314

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Support versions
4343

4444
This product is tested with:
4545

46-
* Python-3.9, 3.10, 3.11, 3.12
46+
* Python-3.9, 3.10, 3.11, 3.12, 3.13
4747
* Django-4.2, 5.0, 5.1
4848

4949
License

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.13",
3031
"Topic :: Software Development :: Libraries :: Python Modules",
3132
]
3233
dependencies = [

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
envlist =
33
py{39,310,311,312}-dj42
44
py{310,311,312}-dj50
5-
py{310,311,312}-dj51
5+
py{310,311,312,313}-dj51
66
lint
77
check
88
skipsdist = True
@@ -13,6 +13,7 @@ python =
1313
3.10: py310, lint, check
1414
3.11: py311
1515
3.12: py312
16+
3.13: py313
1617

1718
[gh-actions:env]
1819
DJANGO =

0 commit comments

Comments
 (0)