From b4fedede4064829adfd123a376e233bf034232d6 Mon Sep 17 00:00:00 2001 From: pjordanandrsn Date: Tue, 28 Jul 2026 14:34:50 -0500 Subject: [PATCH] fix(manifest): align dacite pin with requirements.txt (1.9.2) manifest.json is what HA installs for users; requirements.txt is what CI tests against. The two diverged (1.8.1 vs 1.9.2) in 8199aba, so the test suite validates a different dacite than production installs run. Co-Authored-By: Claude Fable 5 --- custom_components/generac/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/generac/manifest.json b/custom_components/generac/manifest.json index 51a049b..754d336 100644 --- a/custom_components/generac/manifest.json +++ b/custom_components/generac/manifest.json @@ -7,6 +7,6 @@ "documentation": "https://github.com/binarydev/ha-generac", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/binarydev/ha-generac/issues", - "requirements": ["dacite==1.8.1", "cryptography>=41"], + "requirements": ["dacite==1.9.2", "cryptography>=41"], "version": "0.5.3" }