uncap fastapi dependency (#1009)

`fastapi` is a project with a very frequent release cadence, and there's little risk of their upstream improvements breaking things for this project. Users of this excellent tool should be able to update their `fastapi` install without having to also update this library, especially when there are significant breaking changes like the recent 9x-10x improvements.
This commit is contained in:
Austin Orr
2022-06-06 01:24:30 -07:00
committed by GitHub
parent d7e5329e31
commit f42ec866d1

View File

@ -61,7 +61,7 @@ classifiers = [
] ]
requires-python = ">=3.7" requires-python = ">=3.7"
dependencies = [ dependencies = [
"fastapi >=0.65.2,<0.79.0", "fastapi >=0.65.2",
"passlib[bcrypt] ==1.7.4", "passlib[bcrypt] ==1.7.4",
"email-validator >=1.1.0,<1.3", "email-validator >=1.1.0,<1.3",
"pyjwt[crypto] ==2.4.0", "pyjwt[crypto] ==2.4.0",