From d8483d6ce87b028872ccac0782681bb5d91f3bcf Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Sun, 20 Sep 2026 17:21:38 +0300 Subject: [PATCH] fix(deps): raise the starlette floor The declared >=0.40 resolves to a release where the websocket close code never reaches the client. Bisected against the suite: 1.2.0 is the first release it works with. Closes #34 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 17627f9..8ad08f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ "Typing :: Typed", "Topic :: Software Development :: Libraries", ] -dependencies = ["starlette>=0.40,<2", "modern-di>=3.1.1,<4"] +dependencies = ["starlette>=1.2,<2", "modern-di>=3.1.1,<4"] version = "0" [project.urls]