From 45da3f32feb772a1f2800e02594e8e445ecd8f43 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 13:02:45 +0000 Subject: [PATCH] build(deps-dev): update fastapi requirement in /sdk/python 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.136.3...0.137.0) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.137.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- sdk/python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/pyproject.toml b/sdk/python/pyproject.toml index d82405b..15c61eb 100644 --- a/sdk/python/pyproject.toml +++ b/sdk/python/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ ] [project.optional-dependencies] -fastapi = ["fastapi>=0.136.3", "starlette>=1.2.1"] +fastapi = ["fastapi>=0.137.0", "starlette>=1.2.1"] flask = ["flask>=3.1.3"] django = ["django>=5.2.14"] dev = ["pytest", "pytest-asyncio", "httpx", "respx"]