From 45a5b99f3ab2a38383c9596bc9be03fc8e4a0685 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 23:44:27 +0000 Subject: [PATCH] chore(deps-dev): update starlette requirement in /python Updates the requirements on [starlette](https://github.com/Kludex/starlette) to permit the latest version. - [Release notes](https://github.com/Kludex/starlette/releases) - [Changelog](https://github.com/Kludex/starlette/blob/main/docs/release-notes.md) - [Commits](https://github.com/Kludex/starlette/compare/0.27.0...1.3.0) --- updated-dependencies: - dependency-name: starlette dependency-version: 1.3.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 268e842..370f3be 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -23,7 +23,7 @@ dependencies = [] [project.optional-dependencies] sqlite = [] # uses stdlib sqlite3 postgres = ["psycopg[binary]>=3.3.4"] -fastapi = ["fastapi>=0.136.1", "starlette>=0.27"] +fastapi = ["fastapi>=0.136.1", "starlette>=1.3.0"] mqtt = ["paho-mqtt>=2.1.0"] tui = ["rich>=15.0.0"] structlog = ["structlog>=25.5.0"]