From 0a758882e1c22ecd5a7a286858699f3b9041ad42 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 16 Jan 2024 22:07:22 +0100 Subject: [PATCH] Deprecate Python 3.11 (#108160) --- homeassistant/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index a6c8cfa0405..86e4e4bcda1 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -20,9 +20,9 @@ PATCH_VERSION: Final = "0.dev0" __short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__: Final = f"{__short_version__}.{PATCH_VERSION}" REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 11, 0) -REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 11, 0) +REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 12, 0) # Truthy date string triggers showing related deprecation warning messages. -REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = "" +REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = "2024.4" # Format for platform files PLATFORM_FORMAT: Final = "{platform}.{domain}"