summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2025-07-09 18:06:49 +0200
committerGitHub <noreply@github.com>2025-07-09 18:06:49 +0200
commita8912e43836289efe479810f360d62c4c92f060a (patch)
treeb9e3102611839626e9cbf0e7ddd1f03127bce80b
parent426be74022ec31d571858a5b8155300c07a4bdbf (diff)
Updated asgiref dependency.
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt2
-rw-r--r--docs/releases/6.0.txt3
-rw-r--r--pyproject.toml2
-rw-r--r--tests/requirements/py3.txt2
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