From 39a62ec2f69cb3f7751ed95a4db55ad702fc3268 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Fri, 5 Dec 2025 21:08:57 +0100 Subject: [PATCH] Prevent entsoe from loading (#158036) Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> Co-authored-by: Franck Nijhof --- homeassistant/loader.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index 62382e59d0ec..d7ef55881743 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -124,6 +124,12 @@ BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = { # Added in 2025.10.0 because of # https://github.com/frenck/spook/issues/1066 "spook": BlockedIntegration(AwesomeVersion("4.0.0"), "breaks the template engine"), + # Added in 2025.12.1 because of + # https://github.com/JaccoR/hass-entso-e/issues/263 + "entsoe": BlockedIntegration( + AwesomeVersion("0.7.1"), + "crashes Home Assistant when it can't connect to the API", + ), } DATA_COMPONENTS: HassKey[dict[str, ModuleType | ComponentProtocol]] = HassKey(