From f42ec866d141ce3039466d0f14903321c689033c Mon Sep 17 00:00:00 2001 From: Austin Orr Date: Mon, 6 Jun 2022 01:24:30 -0700 Subject: [PATCH] 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. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c2703fa1..6fd1e661 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ classifiers = [ ] requires-python = ">=3.7" dependencies = [ - "fastapi >=0.65.2,<0.79.0", + "fastapi >=0.65.2", "passlib[bcrypt] ==1.7.4", "email-validator >=1.1.0,<1.3", "pyjwt[crypto] ==2.4.0",