From d2077acc92b0643b47b71dd22564a2154b93313c Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 7 Oct 2020 16:44:13 +0200 Subject: [PATCH] Warn when using Python 3.7 (#41400) --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index c4f6f1c6879..69e834bff5e 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -7,7 +7,7 @@ __version__ = f"{__short_version__}.{PATCH_VERSION}" REQUIRED_PYTHON_VER = (3, 7, 1) # Truthy date string triggers showing related deprecation warning messages. REQUIRED_NEXT_PYTHON_VER = (3, 8, 0) -REQUIRED_NEXT_PYTHON_DATE = "" +REQUIRED_NEXT_PYTHON_DATE = "December 7, 2020" # Format for platform files PLATFORM_FORMAT = "{platform}.{domain}"