From 8c5b905c37a9ca7d1a4af4c742cdf582532ad3a3 Mon Sep 17 00:00:00 2001 From: Rainer Maucher Date: Thu, 5 Feb 2026 19:42:07 +0100 Subject: [PATCH] Add Django 6.0 support - Update Django version constraint from <6.0 to <7.0 - Add Django 6.0 framework classifier - No code changes required as indexes are already used instead of deprecated index_together --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 57d2bef..666c161 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ license = {text = "MIT"} requires-python = ">=3.9" keywords = ["django", "cron", "django5", "scheduled tasks", "background jobs"] dependencies = [ - "django>=4.2,<6.0", + "django>=4.2,<7.0", ] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -24,6 +24,7 @@ classifiers = [ "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", "Framework :: Django :: 5.1", + "Framework :: Django :: 6.0", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "Operating System :: OS Independent",