From 91a03ab83da14d927efc654909d0d9e332219edc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Sat, 25 Feb 2023 12:01:01 +0100 Subject: [PATCH] Remove homeassistant_hardware after dependency from zha (#88751) --- homeassistant/components/zha/manifest.json | 1 - script/hassfest/dependencies.py | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/zha/manifest.json b/homeassistant/components/zha/manifest.json index c3aefe5987a..a36373c8625 100644 --- a/homeassistant/components/zha/manifest.json +++ b/homeassistant/components/zha/manifest.json @@ -5,7 +5,6 @@ "onboarding", "usb", "zeroconf", - "homeassistant_hardware", "homeassistant_yellow" ], "codeowners": ["@dmulcahey", "@adminiuga", "@puddly"], diff --git a/script/hassfest/dependencies.py b/script/hassfest/dependencies.py index cadb007e12c..9f8398d4930 100644 --- a/script/hassfest/dependencies.py +++ b/script/hassfest/dependencies.py @@ -146,6 +146,8 @@ IGNORE_VIOLATIONS = { ("demo", "openalpr_local"), # This would be a circular dep ("http", "network"), + # This would be a circular dep + ("zha", "homeassistant_hardware"), # This should become a helper method that integrations can submit data to ("websocket_api", "lovelace"), ("websocket_api", "shopping_list"),