From 2e6a4b362573fa3c9e52e10b88becc9c231d1590 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 10:02:57 +0000 Subject: [PATCH] Update django requirement from <6,>=4.2 to >=6.0.7,<7 Updates the requirements on [django](https://github.com/django/django) to permit the latest version. - [Commits](https://github.com/django/django/compare/4.2...6.0.7) --- updated-dependencies: - dependency-name: django dependency-version: 6.0.7 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/requirements.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 615ff5404..9b2cb819c 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -4,7 +4,7 @@ django-tagging pytz git+https://github.com/graphite-project/whisper.git#egg=whisper git+https://github.com/graphite-project/ceres.git#egg=ceres -Django<6 +Django<7 pyparsing>=3.0.6 alabaster==1.0.0 Sphinx==8.2.1 diff --git a/requirements.txt b/requirements.txt index b8efcd0d1..3302d464b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -35,7 +35,7 @@ # deactivate # -Django>=4.2,<6 +Django>=6.0.7,<7 python-memcached>=1.58 txAMQP>=0.8.2,<0.9 django-tagging diff --git a/setup.py b/setup.py index ddd145e10..c894d347c 100644 --- a/setup.py +++ b/setup.py @@ -116,7 +116,7 @@ def read(fname): scripts=glob("bin/*"), data_files=list(webapp_content.items()) + storage_dirs + conf_files + examples, install_requires=[ - "Django>=4.2,<6", + "Django>=4.2,<7", "django-tagging", "pytz", "pyparsing",