Skip to content

Commit ee700b0

Browse files
Add support for Django 5.2 (#153)
1 parent 9a5271f commit ee700b0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ jobs:
1616
matrix:
1717
os: [windows-latest, macos-latest, ubuntu-latest]
1818
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19-
django-version: ["4.2", "5.0", "5.1"]
19+
django-version: ["4.2", "5.0", "5.1", "5.2"]
2020
exclude:
2121
- django-version: "5.0"
2222
python-version: "3.9"
2323
- django-version: "5.1"
2424
python-version: "3.9"
25+
- django-version: "5.2"
26+
python-version: "3.9"
2527

2628
steps:
2729
- uses: actions/checkout@v4
@@ -60,7 +62,7 @@ jobs:
6062
strategy:
6163
fail-fast: false
6264
matrix:
63-
django-version: ["4.2", "5.0", "5.1"]
65+
django-version: ["4.2", "5.0", "5.1", "5.2"]
6466
steps:
6567
- uses: actions/checkout@v4
6668
- name: Set up Python 3.13
@@ -95,7 +97,7 @@ jobs:
9597
strategy:
9698
fail-fast: false
9799
matrix:
98-
django-version: ["4.2", "5.0", "5.1"]
100+
django-version: ["4.2", "5.0", "5.1", "5.2"]
99101
steps:
100102
- uses: actions/checkout@v4
101103
- name: Set up Python 3.13

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Framework :: Django :: 4.2",
3030
"Framework :: Django :: 5.0",
3131
"Framework :: Django :: 5.1",
32+
"Framework :: Django :: 5.2",
3233
"Intended Audience :: Developers",
3334
"Operating System :: OS Independent",
3435
"Natural Language :: English",

0 commit comments

Comments
 (0)