From ed53b0e151f7ffadc7099f00fcf7b228fd0dd5c5 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Thu, 18 Jun 2026 20:31:17 +0200 Subject: [PATCH] Pin websockets==10.4 in client requirements ws/client/ws_client.py calls websockets.connect(uri, loop=self.loop), which the current websockets release (16.0) no longer accepts. Pin to the same version already used server-side. PyQt5.Qwt, also required by client/brewpi_win.py, isn't pip-installable and must come from the python3-pyqt5.qwt system package. Co-Authored-By: Claude Sonnet 4.6 --- client/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/requirements.txt b/client/requirements.txt index 067539d..6a00701 100644 --- a/client/requirements.txt +++ b/client/requirements.txt @@ -1 +1,2 @@ -pyqt5 \ No newline at end of file +pyqt5 +websockets==10.4 \ No newline at end of file