From 9ead336b564f7be1b773c8dc025205eb0ee6769c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 08:53:02 +0000 Subject: [PATCH] chore: update fastapi requirement in /examples/fastapi Updates the requirements on [fastapi](https://github.com/fastapi/fastapi) to permit the latest version. - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.139.0...0.140.7) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.140.7 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/fastapi/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fastapi/pyproject.toml b/examples/fastapi/pyproject.toml index a07b50a..c055a06 100644 --- a/examples/fastapi/pyproject.toml +++ b/examples/fastapi/pyproject.toml @@ -3,7 +3,7 @@ name = "fastapi-example" version = "0" requires-python = ">=3.12" dependencies = [ - "fastapi~=0.139.0", + "fastapi~=0.140.7", "uvicorn-hmr[all]", ]