From 8871dc11b545ce69c2cbe4a46d7e64c6a615c4bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 06:10:11 +0000 Subject: [PATCH] build(deps): update uvicorn requirement from ^0.44.0 to >=0.44,<0.52 Updates the requirements on [uvicorn](https://github.com/Kludex/uvicorn) to permit the latest version. - [Release notes](https://github.com/Kludex/uvicorn/releases) - [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md) - [Commits](https://github.com/Kludex/uvicorn/compare/0.44.0...0.51.0) --- updated-dependencies: - dependency-name: uvicorn dependency-version: 0.51.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 091171d..b6c38d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ packages = [{include = "engine"}] [tool.poetry.dependencies] python = "^3.11" fastapi = "^0.135.1" -uvicorn = {extras = ["standard"], version = "^0.44.0"} +uvicorn = {extras = ["standard"], version = ">=0.44,<0.52"} pydantic = "^2.10.0" pydantic-settings = "^2.6.0" httpx = "^0.28.0"