Skip to content

Add support for Django 5.2 #815

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@ jobs:
strategy:
matrix:
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
django-version: [4.2, 5.1, "main"]
django-version: [4.2, 5.1, 5.2, "main"]
exclude:

# Django 5.1
- python-version: 3.9
django-version: 5.1

# Django 5.2
- python-version: 3.9
django-version: 5.2

# Django main
- python-version: 3.9
django-version: "main"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Symlink CHANGELOG.md into docs for Sphinx (#812).
- Drop support for Django 5.0 (EOL) (#814).
- Add support for Django 5.2 (#815).

## 25.1 (2025-03-01)

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ envdir = {toxinidir}/.venv
args_are_paths = false
envlist =
py39-{4.2},
py310-{4.2,5.1},
py311-{4.2,5.1},
py312-{4.2,5.1,main},
py313-{4.2,5.1,main},
py310-{4.2,5.1,5.2},
py311-{4.2,5.1,5.2},
py312-{4.2,5.1,5.2,main},
py313-{4.2,5.1,5.2,main},
docs,
lint

Expand All @@ -31,6 +31,7 @@ commands =
deps =
4.2: Django==4.2.*
5.1: Django==5.1.*
5.2: Django==5.2.*
main: https://github.com/django/django/archive/main.tar.gz

[testenv:lint]
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading