mirror of https://github.com/django/django.git
[3.1.x] Pinned asgiref to 3.2 series with minimum version to 3.2.10.
This commit is contained in:
parent
32e22f0531
commit
474f65406f
|
@ -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_ 16.1.0+
|
||||
* asgiref_ 3.2+ (required)
|
||||
* asgiref_ 3.2.10+ (required)
|
||||
* bcrypt_
|
||||
* docutils_
|
||||
* geoip2_
|
||||
|
|
|
@ -698,6 +698,9 @@ Miscellaneous
|
|||
* The :ttag:`{% localize off %} <localize>` tag and :tfilter:`unlocalize`
|
||||
filter no longer respect :setting:`DECIMAL_SEPARATOR` setting.
|
||||
|
||||
* The minimum supported version of ``asgiref`` is increased from 3.2 to
|
||||
3.2.10.
|
||||
|
||||
.. _deprecated-features-3.1:
|
||||
|
||||
Features deprecated in 3.1
|
||||
|
|
|
@ -40,7 +40,7 @@ scripts = django/bin/django-admin.py
|
|||
include_package_data = true
|
||||
zip_safe = false
|
||||
install_requires =
|
||||
asgiref >= 3.2
|
||||
asgiref ~= 3.2.10
|
||||
pytz
|
||||
sqlparse >= 0.2.2
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
asgiref >= 3.2
|
||||
asgiref ~= 3.2.10
|
||||
argon2-cffi >= 16.1.0
|
||||
bcrypt
|
||||
docutils
|
||||
|
|
Loading…
Reference in New Issue