From 8e05e3850ba228c87b31dc43519384a5c283c6f3 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 30 May 2023 18:46:33 +0200 Subject: [PATCH] Deprecate Python 3.10 (#93794) --- homeassistant/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index f150938347d..212000aa26d 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -12,9 +12,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, 10, 0) -REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 10, 0) +REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 11, 0) # Truthy date string triggers showing related deprecation warning messages. -REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = "" +REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = "2023.8" # Format for platform files PLATFORM_FORMAT: Final = "{platform}.{domain}"