From a8912e43836289efe479810f360d62c4c92f060a Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Wed, 9 Jul 2025 18:06:49 +0200 Subject: [PATCH] Updated asgiref dependency. --- docs/internals/contributing/writing-code/unit-tests.txt | 2 +- docs/releases/6.0.txt | 3 +++ pyproject.toml | 2 +- tests/requirements/py3.txt | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 489b651c4b..f7651f1d4f 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -308,7 +308,7 @@ dependencies: * :pypi:`aiosmtpd` 1.4.5+ * :pypi:`argon2-cffi` 23.1.0+ -* :pypi:`asgiref` 3.8.1+ (required) +* :pypi:`asgiref` 3.9.1+ (required) * :pypi:`bcrypt` 4.1.1+ * :pypi:`colorama` 0.4.6+ * :pypi:`docutils` 0.19+ diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt index 29912027ff..6a819ecc3f 100644 --- a/docs/releases/6.0.txt +++ b/docs/releases/6.0.txt @@ -394,6 +394,9 @@ Miscellaneous set the level to ``messages.SUCCESS`` to retain the previous icon and styling. +* The minimum supported version of ``asgiref`` is increased from 3.8.1 to + 3.9.1. + .. _deprecated-features-6.0: Features deprecated in 6.0 diff --git a/pyproject.toml b/pyproject.toml index b9e82334cd..5b15d37116 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "Django" dynamic = ["version"] requires-python = ">= 3.12" dependencies = [ - "asgiref>=3.8.1", + "asgiref>=3.9.1", "sqlparse>=0.5.0", "tzdata; sys_platform == 'win32'", ] diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index 1708ad2965..7d5db0cc6f 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,5 +1,5 @@ aiosmtpd >= 1.4.5 -asgiref >= 3.8.1 +asgiref >= 3.9.1 argon2-cffi >= 23.1.0; sys.platform != 'win32' or python_version < '3.14' bcrypt >= 4.1.1 black >= 25.1.0