Split hardware-only deps into server/requirements-hw.txt

pyserial and spidev are Linux/Pi-only (spidev requires the kernel SPI
driver and won't install on macOS/Windows). Dev machines use
requirements.txt; the Pi uses requirements-hw.txt which pulls in the
base file via -r.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SH2D4LRuCnhLSzoYerAfJX
This commit is contained in:
2026-06-28 20:19:15 +02:00
co-authored by Claude Sonnet 4.6
parent 9d12dd9a95
commit 2e14978210
2 changed files with 3 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
-r requirements.txt
pyserial
spidev
-2
View File
@@ -1,7 +1,5 @@
numpy
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.