Skip to content

Commit 303e98c

Browse files
committed
Add support for Django 5.1 and Python 3.13
1 parent 9e1ecb2 commit 303e98c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: [ '3.9', '3.10', '3.11', '3.12' ]
10+
python: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
1111
name: python${{ matrix.python }}, django-${{ matrix.django }}
1212
steps:
1313
- uses: actions/checkout@v3

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ v5.0.0
66

77
- Fixed documentation not rendering on readthedocs.
88
- Drop support for Python 3.8.
9-
- Add support for Python 3.11 and 3.12.
10-
- Add support for Django 4.1 and 4.2.
9+
- Add support for Python 3.11, 3.12 and 3.13.
10+
- Add support for Django 4.1, 4.2 and 5.1.
1111

1212
v4.0.0
1313
~~~~~~

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
2930
"Topic :: Internet :: WWW/HTTP",
3031
"Topic :: Software Development :: Libraries :: Python Modules",
3132
]

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
py{39,310}-django32
44
py{39,310,311,312}-django42
5+
py{310,311,312,313}-django51
56

67
[testenv]
78
deps =
@@ -11,6 +12,7 @@ deps =
1112
commands =
1213
django32: pip install "Django>=3.2,<3.3"
1314
django42: pip install "Django>=4.2,<4.3"
15+
django51: pip install "Django>=5.1,<5.2"
1416
pytest testapp/ {posargs}
1517
setenv =
1618
PYTHONWARNINGS = all

0 commit comments

Comments
 (0)