1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

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

@@ -4,7 +4,7 @@ MINOR_VERSION = 101
PATCH_VERSION = "0.dev0"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 6, 0)
REQUIRED_PYTHON_VER = (3, 6, 1)
# Format for platform files
PLATFORM_FORMAT = "{platform}.{domain}"