mirror of https://github.com/tiangolo/fastapi.git
⬆️ Upgrade Uvicorn when installing fastapi[all] to the latest version including uvloop (#2548)
* ⬆️ Upgrade Uvicorn when installing fastapi[all] to the latest version, including uvloop * ⬆️ Relax Uvicorn version range to the minimum supported in case anyone depends older versions somehow installed with FastAPI extras
This commit is contained in:
parent
dfe3f614ed
commit
1e58a3e44c
|
|
@ -76,7 +76,7 @@ dev = [
|
||||||
"passlib[bcrypt] >=1.7.2,<2.0.0",
|
"passlib[bcrypt] >=1.7.2,<2.0.0",
|
||||||
"autoflake >=1.3.1,<2.0.0",
|
"autoflake >=1.3.1,<2.0.0",
|
||||||
"flake8 >=3.8.3,<4.0.0",
|
"flake8 >=3.8.3,<4.0.0",
|
||||||
"uvicorn >=0.11.5,<0.12.0",
|
"uvicorn[standard] >=0.12.0,<0.14.0",
|
||||||
"graphene >=2.1.8,<3.0.0"
|
"graphene >=2.1.8,<3.0.0"
|
||||||
]
|
]
|
||||||
all = [
|
all = [
|
||||||
|
|
@ -90,7 +90,7 @@ all = [
|
||||||
"ujson >=3.0.0,<4.0.0",
|
"ujson >=3.0.0,<4.0.0",
|
||||||
"orjson >=3.2.1,<4.0.0",
|
"orjson >=3.2.1,<4.0.0",
|
||||||
"email_validator >=1.1.1,<2.0.0",
|
"email_validator >=1.1.1,<2.0.0",
|
||||||
"uvicorn >=0.11.5,<0.12.0",
|
"uvicorn[standard] >=0.12.0,<0.14.0",
|
||||||
"async_exit_stack >=1.0.1,<2.0.0",
|
"async_exit_stack >=1.0.1,<2.0.0",
|
||||||
"async_generator >=1.10,<2.0.0"
|
"async_generator >=1.10,<2.0.0"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue