diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-12-07 09:49:39 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-12-07 09:55:18 +0100 |
| commit | 01c0fb9d193cb7391558a3630734e4cb4958fe23 (patch) | |
| tree | 9d2d08873dd896a2bdb02905eb3ff00149c6553e | |
| parent | 7f20e89453711dde13bd8e95116811812c65acc3 (diff) | |
[4.0.x] Updated asgiref dependency for 4.0 release series.
Backport of 513441240f874dd0b6187c0c6aaa3e8eccd8ddbe from main
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 2 | ||||
| -rw-r--r-- | docs/releases/4.0.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 087f64205b..c37efc09eb 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -275,7 +275,7 @@ dependencies: * aiosmtpd_ * argon2-cffi_ 19.1.0+ -* asgiref_ 3.3.2+ (required) +* asgiref_ 3.4.1+ (required) * bcrypt_ * colorama_ * docutils_ diff --git a/docs/releases/4.0.txt b/docs/releases/4.0.txt index 89936640b7..9d9b18583c 100644 --- a/docs/releases/4.0.txt +++ b/docs/releases/4.0.txt @@ -582,6 +582,9 @@ Miscellaneous :attr:`django.utils.timezone.utc` is changed to alias :attr:`datetime.timezone.utc`. +* The minimum supported version of ``asgiref`` is increased from 3.3.2 to + 3.4.1. + .. _deprecated-features-4.0: Features deprecated in 4.0 @@ -38,7 +38,7 @@ packages = find: include_package_data = true zip_safe = false install_requires = - asgiref >= 3.3.2 + asgiref >= 3.4.1, < 4 backports.zoneinfo; python_version<"3.9" sqlparse >= 0.2.2 tzdata; sys_platform == 'win32' diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index 3b73b17b24..dccda6b8c3 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,5 +1,5 @@ aiosmtpd -asgiref >= 3.3.2 +asgiref >= 3.4.1 argon2-cffi >= 16.1.0 backports.zoneinfo; python_version < '3.9' bcrypt |
