From 5d9c76c6f9a1eba8fdbdbd399e6b01316914df4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Tue, 28 Apr 2026 16:11:23 +0200 Subject: [PATCH] fix: implementation requires paho-mqtt 2.x This should be pinned accordingly, or weird things will happen for users who happen to still have a paho-mqtt 1.x sitting in their venv. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 243ab71..05a4b38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ ] dependencies = [ "webcolors", - "paho-mqtt", + "paho-mqtt>=2.1.0", "mkdocstrings-python", "typing-extensions ; python_version<'3.13'", ]