Skip to content

Commit 762787f

Browse files
Add support for Django 5.2 and bump version to 0.0.13
Co-Authored-By: Nishant Singh <[email protected]>
1 parent 6014b90 commit 762787f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version: ["3.9", "3.10", "3.11"]
18-
django-version: ["4.0", "4.1", "4.2", "5.0", "5.1"]
18+
django-version: ["4.0", "4.1", "4.2", "5.0", "5.1", "5.2"]
1919
exclude:
2020
# Django 5.0+ requires Python 3.10+
2121
- python-version: "3.9"
2222
django-version: "5.0"
2323
- python-version: "3.9"
2424
django-version: "5.1"
25+
- python-version: "3.9"
26+
django-version: "5.2"
2527
max-parallel: 5
2628

2729
services:

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "django-querysets-single-query-fetch"
7-
version = "0.0.12"
7+
version = "0.0.13"
88
description = "Execute multiple Django querysets in a single SQL query"
99
readme = "README.md"
1010
requires-python = ">=3.9"
@@ -30,7 +30,7 @@ classifiers = [
3030
"Topic :: Software Development :: Libraries :: Python Modules",
3131
]
3232
dependencies = [
33-
"django>=4.0,<5.2", # From setup.py
33+
"django>=4.0,<5.3", # Updated to include Django 5.2
3434
"psycopg2==2.9.9" # Keep specific version for now
3535
]
3636

0 commit comments

Comments
 (0)