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:
Simon Rey 2020-11-19 20:16:56 +01:00 committed by GitHub
parent 7482d63bcc
commit 88f6150c5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ flower==0.9.5 # https://github.com/mher/flower
{%- endif %}
{%- endif %}
{%- 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/
{%- endif %}