From a83bd71dee19c69abd49b6c6cb81d4ad8e74cae3 Mon Sep 17 00:00:00 2001 From: Brendon Smith Date: Sun, 11 Jun 2023 12:05:50 -0400 Subject: [PATCH] Update to FastAPI 0.96 This commit will update/upgrade to FastAPI 0.96. FastAPI 0.96 improves the performance of `create_cloned_field`, which is used by FastAPI internally when instantiating API routes. https://fastapi.tiangolo.com/release-notes/ https://github.com/tiangolo/fastapi/discussions/8609 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7a363bf..0cb4d03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ docs = [ "mkdocs-material>=8,<9", ] fastapi = [ - "fastapi>=0.95,<0.96", + "fastapi>=0.96,<0.97", ] starlette = [ "starlette>=0.27,<0.28",