2106e24952
- Expand ruff config from E/F to 17 rule sets (B, RUF, SIM, PIE, T20, ARG, ERA, A, BLE, RET, ISC, TCH, UP, C4, PERF) - Fix 907 lint errors across all Python files (GUI, FPGA cosim, schematics scripts, simulations, utilities, tools) - Replace all blind except-Exception with specific exception types - Remove commented-out dead code (ERA001) from cosim/simulation files - Modernize typing: deprecated typing.List/Dict/Tuple to builtins - Fix unused args/loop vars, ambiguous unicode, perf anti-patterns - Delete legacy GUI files V1-V4 - Add V7 test suite, requirements files - All CI jobs pass: ruff (0 errors), py_compile, pytest (92/92), MCU tests (20/20), FPGA regression (25/25)
23 lines
414 B
Plaintext
23 lines
414 B
Plaintext
# PLFM Radar GUI V7 — Python dependencies
|
|
# Install with: pip install -r requirements_v7.txt
|
|
|
|
# Core (required)
|
|
PyQt6>=6.5
|
|
PyQt6-WebEngine>=6.5
|
|
numpy>=1.24
|
|
matplotlib>=3.7
|
|
|
|
# Hardware interfaces (optional — GUI degrades gracefully)
|
|
pyusb>=1.2
|
|
pyftdi>=0.54
|
|
|
|
# Signal processing (optional)
|
|
scipy>=1.10
|
|
|
|
# Tracking / clustering (optional)
|
|
scikit-learn>=1.2
|
|
filterpy>=1.4
|
|
|
|
# CRC validation (optional)
|
|
crcmod>=1.7
|