From 967b0a8eed3e6e45f51304e725661864189206eb Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 28 Jun 2026 17:40:29 +0200 Subject: [PATCH] Add pyserial and spidev to server requirements Required for real hardware backends (HeaterHendi serial protocol, TempSensor_max31865 SPI interface). Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01SH2D4LRuCnhLSzoYerAfJX --- server/requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/requirements.txt b/server/requirements.txt index 8fa23ab..916a1b0 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -3,5 +3,7 @@ scipy matplotlib websockets==10.4 dpath +pyserial +spidev # web/ (the browser client) needs none of these - it's static HTML/JS # served straight from the stdlib's http.server, no new dependency.