Require Python >= 3.6.1 (#27226)

https://github.com/home-assistant/architecture/issues/278
This commit is contained in:
Ville Skyttä 2019-10-05 22:20:11 +03:00 committed by Paulus Schoutsen
parent a8567a746b
commit 25bfdbc8df
3 changed files with 29 additions and 13 deletions

View file

@ -97,17 +97,6 @@ async def async_from_config_dict(
stop = time()
_LOGGER.info("Home Assistant initialized in %.2fs", stop - start)
if sys.version_info[:3] < (3, 6, 1):
msg = (
"Python 3.6.0 support is deprecated and will "
"be removed in the first release after October 2. Please "
"upgrade Python to 3.6.1 or higher."
)
_LOGGER.warning(msg)
hass.components.persistent_notification.async_create(
msg, "Python version", "python_version"
)
return hass