mirror of https://github.com/django/django.git
[3.0.x] Pinned asgiref to 3.2 series.
Backport of 36453526d3
from master
This commit is contained in:
parent
5f24b18e6c
commit
0e58745716
|
@ -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_ (required)
|
||||
* asgiref_ 3.2+ (required)
|
||||
* bcrypt_
|
||||
* docutils_
|
||||
* geoip2_
|
||||
|
|
2
setup.py
2
setup.py
|
@ -83,7 +83,7 @@ setup(
|
|||
entry_points={'console_scripts': [
|
||||
'django-admin = django.core.management:execute_from_command_line',
|
||||
]},
|
||||
install_requires=['pytz', 'sqlparse >= 0.2.2', 'asgiref'],
|
||||
install_requires=['pytz', 'sqlparse >= 0.2.2', 'asgiref ~= 3.2'],
|
||||
extras_require={
|
||||
"bcrypt": ["bcrypt"],
|
||||
"argon2": ["argon2-cffi >= 16.1.0"],
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
asgiref
|
||||
asgiref ~= 3.2
|
||||
argon2-cffi >= 16.1.0
|
||||
bcrypt
|
||||
docutils
|
||||
|
|
Loading…
Reference in New Issue