From c63349d31850b9659332d3df928a37cfa27eaa08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2026 03:52:42 +0000 Subject: [PATCH] chore(deps-dev): update websockets requirement from <17,>=12 to >=12,<18 Updates the requirements on [websockets](https://github.com/python-websockets/websockets) to permit the latest version. - [Release notes](https://github.com/python-websockets/websockets/releases) - [Commits](https://github.com/python-websockets/websockets/compare/12.0...17.0) --- updated-dependencies: - dependency-name: websockets dependency-version: '17.0' dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9700c242..b74092fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ web = [ "uvicorn>=0.30,<1", # uvicorn needs a websockets implementation to serve the /ws realtime # channel; without it the WebSocket handshake 500s at runtime. - "websockets>=12,<17", + "websockets>=12,<18", ] dev = [ "pytest>=9.0.3,<10",