From b4817e9ee9e657d79405e6364b8e8601e8f85bfb Mon Sep 17 00:00:00 2001 From: zvx-echo6 Date: Thu, 11 Jun 2026 00:40:20 -0600 Subject: [PATCH] fix(deps): add missing python-dotenv dependency config_loader.py imports dotenv_values from python-dotenv but the package was not listed in requirements.txt. Co-Authored-By: Claude Opus 4.5 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 66edb8b..62b2e69 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,3 +13,4 @@ h3>=4.0 fastapi>=0.110.0 uvicorn[standard]>=0.27.0 aiomqtt>=2.0.0 +python-dotenv>=1.0.0