1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Bump Python support to min Python 3.6.0 (#25582)

* Bump Python support to min Python 3.6.0

* Fix type
This commit is contained in:
Paulus Schoutsen
2019-07-30 16:44:39 -07:00
committed by GitHub
parent fe1e761a7a
commit 39b8102ce6
6 changed files with 32 additions and 37 deletions

View File

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