mirror of https://github.com/tiangolo/fastapi.git
📌 Pin dependencies (#1697)
* 📌 Pin dependencies * 🐛 Fix config in pyproject.toml
This commit is contained in:
parent
8447000eee
commit
3c6dafcc8e
|
|
@ -43,53 +43,53 @@ Documentation = "https://fastapi.tiangolo.com/"
|
||||||
|
|
||||||
[tool.flit.metadata.requires-extra]
|
[tool.flit.metadata.requires-extra]
|
||||||
test = [
|
test = [
|
||||||
"pytest==5.4.3",
|
"pytest ==5.4.3",
|
||||||
"pytest-cov==2.10.0",
|
"pytest-cov ==2.10.0",
|
||||||
"mypy",
|
"mypy ==0.782",
|
||||||
"black",
|
"black ==19.10b0",
|
||||||
"isort",
|
"isort >=5.0.6,<6.0.0",
|
||||||
"requests",
|
"requests >=2.24.0,<3.0.0",
|
||||||
"email_validator",
|
"email_validator >=1.1.1,<2.0.0",
|
||||||
"sqlalchemy",
|
"sqlalchemy >=1.3.18,<2.0.0",
|
||||||
"peewee",
|
"peewee >=3.13.3,<4.0.0",
|
||||||
"databases[sqlite]",
|
"databases[sqlite] >=0.3.2,<0.4.0",
|
||||||
"orjson",
|
"orjson >=3.2.1,<4.0.0",
|
||||||
"async_exit_stack",
|
"async_exit_stack >=1.0.1,<2.0.0",
|
||||||
"async_generator",
|
"async_generator >=1.10,<2.0.0",
|
||||||
"python-multipart",
|
"python-multipart >=0.0.5,<0.0.6",
|
||||||
"aiofiles",
|
"aiofiles >=0.5.0,<0.6.0",
|
||||||
"flask"
|
"flask >=1.1.2,<2.0.0"
|
||||||
]
|
]
|
||||||
doc = [
|
doc = [
|
||||||
"mkdocs",
|
"mkdocs >=1.1.2,<2.0.0",
|
||||||
"mkdocs-material",
|
"mkdocs-material >=5.4.0,<6.0.0",
|
||||||
"markdown-include",
|
"markdown-include >=0.5.1,<0.6.0",
|
||||||
"typer",
|
"typer >=0.3.0,<0.4.0",
|
||||||
"typer-cli",
|
"typer-cli >=0.0.9,<0.0.10",
|
||||||
"pyyaml"
|
"pyyaml >=5.3.1,<6.0.0"
|
||||||
]
|
]
|
||||||
dev = [
|
dev = [
|
||||||
"pyjwt",
|
"pyjwt >=1.7.1,<2.0.0",
|
||||||
"passlib[bcrypt]",
|
"passlib[bcrypt] >=1.7.2,<2.0.0",
|
||||||
"autoflake",
|
"autoflake >=1.3.1,<2.0.0",
|
||||||
"flake8",
|
"flake8 >=3.8.3,<4.0.0",
|
||||||
"uvicorn",
|
"uvicorn >=0.11.5,<0.12.0",
|
||||||
"graphene"
|
"graphene >=2.1.8,<3.0.0"
|
||||||
]
|
]
|
||||||
all = [
|
all = [
|
||||||
"requests",
|
"requests >=2.24.0,<3.0.0",
|
||||||
"aiofiles",
|
"aiofiles >=0.5.0,<0.6.0",
|
||||||
"jinja2",
|
"jinja2 >=2.11.2,<3.0.0",
|
||||||
"python-multipart",
|
"python-multipart >=0.0.5,<0.0.6",
|
||||||
"itsdangerous",
|
"itsdangerous >=1.1.0,<2.0.0",
|
||||||
"pyyaml",
|
"pyyaml >=5.3.1,<6.0.0",
|
||||||
"graphene",
|
"graphene >=2.1.8,<3.0.0",
|
||||||
"ujson",
|
"ujson >=3.0.0,<4.0.0",
|
||||||
"orjson",
|
"orjson >=3.2.1,<4.0.0",
|
||||||
"email_validator",
|
"email_validator >=1.1.1,<2.0.0",
|
||||||
"uvicorn",
|
"uvicorn >=0.11.5,<0.12.0",
|
||||||
"async_exit_stack",
|
"async_exit_stack >=1.0.1,<2.0.0",
|
||||||
"async_generator"
|
"async_generator >=1.10,<2.0.0"
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.isort]
|
[tool.isort]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue