From 650ce967825aa192222391bfe3003c8d97e6f1d0 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 23 Jun 2023 21:52:04 +0200 Subject: [PATCH] Refs #34391 -- Updated asgiref dependency for 5.0 release series. --- docs/internals/contributing/writing-code/unit-tests.txt | 2 +- docs/releases/5.0.txt | 3 +++ setup.cfg | 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 195d933d33d..dd51f65b76d 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -279,7 +279,7 @@ dependencies: * :pypi:`aiosmtpd` * :pypi:`argon2-cffi` 19.2.0+ -* :pypi:`asgiref` 3.6.0+ (required) +* :pypi:`asgiref` 3.7.0+ (required) * :pypi:`bcrypt` * :pypi:`colorama` * :pypi:`docutils` diff --git a/docs/releases/5.0.txt b/docs/releases/5.0.txt index 588aa23ca1e..dacf5d1aafd 100644 --- a/docs/releases/5.0.txt +++ b/docs/releases/5.0.txt @@ -438,6 +438,9 @@ Miscellaneous odd number of operands rather than exactly one operand. This is consistent with the behavior of MySQL, MariaDB, and Python. +* The minimum supported version of ``asgiref`` is increased from 3.6.0 to + 3.7.0. + .. _deprecated-features-5.0: Features deprecated in 5.0 diff --git a/setup.cfg b/setup.cfg index cdbd8f2e8ab..8848a1c1156 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,7 +37,7 @@ packages = find: include_package_data = true zip_safe = false install_requires = - asgiref >= 3.6.0 + asgiref >= 3.7.0 sqlparse >= 0.3.1 tzdata; sys_platform == 'win32' diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index d812acbeceb..e712f06d6b7 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,5 +1,5 @@ aiosmtpd -asgiref >= 3.6.0 +asgiref >= 3.7.0 argon2-cffi >= 19.2.0 bcrypt black