mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-07-12 09:02:19 +03:00
Fix after uvicorn 0.12.0 - Ship extra dependencies
Uvicorn no longer ships extra dependencies uvloop, websockets and httptools as default. To install these dependencies use uvicorn[standard]. cf https://github.com/encode/uvicorn/blob/master/CHANGELOG.md
This commit is contained in:
parent
7482d63bcc
commit
88f6150c5d
|
@ -24,7 +24,7 @@ flower==0.9.5 # https://github.com/mher/flower
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_async == 'y' %}
|
{%- if cookiecutter.use_async == 'y' %}
|
||||||
uvicorn==0.12.2 # https://github.com/encode/uvicorn
|
uvicorn[standard]==0.12.2 # https://github.com/encode/uvicorn
|
||||||
wsproto==0.15.0 # https://github.com/python-hyper/wsproto/
|
wsproto==0.15.0 # https://github.com/python-hyper/wsproto/
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user