From d92d03e5fcc7203a6187f4a14044223f8c991d69 Mon Sep 17 00:00:00 2001 From: Sam Friedman Date: Mon, 24 Feb 2025 17:15:57 -0500 Subject: [PATCH] dependencies: pin trio-websocket to 0.11.1 trio-websocket v0.12 introduced a bug that causes the library to use port 80 for wss urls instead of port 443. Details are in the PR: https://github.com/python-trio/trio-websocket/pull/197 Pin the trio-websocket dependency to v0.11.1 until the fix is merged and released. Signed-off-by: Sam Friedman --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 95d2dc7..36ef6a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "pyyaml", "rich", "trio", - "trio-websocket", + "trio-websocket==0.11.1", ] [project.scripts]