From e905410ed77f0fecfa2806bd8adde3e64f9277b6 Mon Sep 17 00:00:00 2001 From: impressionyang Date: Wed, 15 Apr 2026 19:03:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20manifest.json=20?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 问题:bleak-mesh 包不存在导致 500 错误 解决: - 移除不存在的 bleak-mesh 依赖 - 使用 pyserial-asyncio-fast 替代 pyserial-asyncio(HA 推荐) Co-Authored-By: Claude Opus 4.6 --- custom_components/sigmesh_gateway/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/sigmesh_gateway/manifest.json b/custom_components/sigmesh_gateway/manifest.json index 7a89e38..08549a0 100644 --- a/custom_components/sigmesh_gateway/manifest.json +++ b/custom_components/sigmesh_gateway/manifest.json @@ -6,7 +6,7 @@ "issue_tracker": "https://github.com/impress-sig-mesh/sigmesh_gateway/issues", "dependencies": [], "codeowners": ["@impress-sig-mesh"], - "requirements": ["pyserial-asyncio==0.6", "bleak-mesh>=0.2.0"], + "requirements": ["pyserial-asyncio-fast>=0.6"], "config_flow": true, "iot_class": "local_push", "loggers": ["sigmesh_gateway"]