From 849feb4044392a0f02ddeaf7b3e26d9fdb50a977 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 22:22:30 +0000 Subject: [PATCH 1/2] Bump django from 5.2.8 to 6.0.5 in /backend Bumps [django](https://github.com/django/django) from 5.2.8 to 6.0.5. - [Commits](https://github.com/django/django/compare/5.2.8...6.0.5) --- updated-dependencies: - dependency-name: django dependency-version: 6.0.4 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 256e4ba4b2..a43132ecd7 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -44,7 +44,7 @@ known-first-party = [ [project] requires-python = ">=3.13.5" dependencies = [ - "django==5.2.8", + "django==6.0.5", "django-environ==0.10.0", "django-model-utils==5.0.0", "django-timezone-field==7.0", From f900a216a54826e554d9cf779c1a694949abceb3 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 22:36:29 +0000 Subject: [PATCH 2/2] Update django-timezone-field to support Django 6.0 django-timezone-field 7.0 requires django>=3.2,<6.0, which conflicts with the Django 6.0.5 upgrade. Updating to >=7.1 for Django 6.0 support. Co-authored-by: Marco Acierno --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index a43132ecd7..9e0934bc58 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -47,7 +47,7 @@ dependencies = [ "django==6.0.5", "django-environ==0.10.0", "django-model-utils==5.0.0", - "django-timezone-field==7.0", + "django-timezone-field>=7.1", "certifi==2024.7.4", "chardet==5.2.0", "idna==3.7",