From ffcb06beb92363208fb9e9efd536ba2055b4c61b Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Wed, 6 Mar 2024 14:56:50 +0100 Subject: [PATCH] Allow start_time >= 1.1.7 (#112500) --- homeassistant/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index ebea95eaa75..cba7df278f2 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -92,7 +92,7 @@ class BlockedIntegration: BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = { # Added in 2024.3.0 because of https://github.com/home-assistant/core/issues/112464 - "start_time": BlockedIntegration(None, "breaks Home Assistant") + "start_time": BlockedIntegration(AwesomeVersion("1.1.7"), "breaks Home Assistant") } DATA_COMPONENTS = "components"