diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2021-04-06 10:08:05 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton@noumenal.es> | 2021-04-06 10:38:43 +0200 |
| commit | 5aea50e57f6c1bd725db36a0664e21b2be91b591 (patch) | |
| tree | 5b2e90d001ffae1256ffda3269665d814382118b | |
| parent | 1eac8468cbde790fecb51dd055a439f4947d01e9 (diff) | |
Updated asgiref dependency for 3.2 release series.
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 2 | ||||
| -rw-r--r-- | docs/releases/3.2.txt | 3 | ||||
| -rw-r--r-- | setup.cfg | 2 | ||||
| -rw-r--r-- | 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 e421147b40..d3149fafc2 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -271,7 +271,7 @@ If you want to run the full suite of tests, you'll need to install a number of dependencies: * argon2-cffi_ 19.1.0+ -* asgiref_ 3.2.10+ (required) +* asgiref_ 3.3.2+ (required) * bcrypt_ * colorama_ * docutils_ diff --git a/docs/releases/3.2.txt b/docs/releases/3.2.txt index 3ba8c36415..f094932626 100644 --- a/docs/releases/3.2.txt +++ b/docs/releases/3.2.txt @@ -739,6 +739,9 @@ Miscellaneous messages in the :rfc:`6265` compliant format. Support for cookies that use the old format remains until Django 4.1. +* The minimum supported version of ``asgiref`` is increased from 3.2.10 to + 3.3.2. + .. _deprecated-features-3.2: Features deprecated in 3.2 @@ -37,7 +37,7 @@ packages = find: include_package_data = true zip_safe = false install_requires = - asgiref >= 3.2.10 + asgiref >= 3.3.2 pytz sqlparse >= 0.2.2 diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index 6488ab6a7d..af06c4e5f6 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,4 +1,4 @@ -asgiref >= 3.2.10 +asgiref >= 3.3.2 argon2-cffi >= 16.1.0 backports.zoneinfo; python_version < '3.9' bcrypt |
