Move voluptuous-serialize to core requirement (#16507)

pull/16515/head
Jason Hu 2018-09-09 00:49:51 -07:00 committed by Fabian Affolter
parent 7d590a6b93
commit 4291bdc6b2
6 changed files with 3 additions and 11 deletions

View File

@ -7,9 +7,6 @@ from homeassistant.helpers.data_entry_flow import (
FlowManagerIndexView, FlowManagerResourceView)
REQUIREMENTS = ['voluptuous-serialize==2.0.0']
@asyncio.coroutine
def async_setup(hass):
"""Enable the Home Assistant views."""

View File

@ -12,6 +12,7 @@ pytz>=2018.04
pyyaml>=3.13,<4
requests==2.19.1
voluptuous==0.11.5
voluptuous-serialize==2.0.0
pycryptodome>=3.6.6

View File

@ -13,6 +13,7 @@ pytz>=2018.04
pyyaml>=3.13,<4
requests==2.19.1
voluptuous==0.11.5
voluptuous-serialize==2.0.0
# homeassistant.components.nuimo_controller
--only-binary=all nuimo==0.1.0
@ -1444,9 +1445,6 @@ venstarcolortouch==0.6
# homeassistant.components.sensor.volkszaehler
volkszaehler==0.1.2
# homeassistant.components.config.config_entries
voluptuous-serialize==2.0.0
# homeassistant.components.volvooncall
volvooncall==0.4.0

View File

@ -215,9 +215,6 @@ statsd==3.2.1
# homeassistant.components.camera.uvc
uvcclient==0.10.1
# homeassistant.components.config.config_entries
voluptuous-serialize==2.0.0
# homeassistant.components.vultr
vultr==0.1.2

View File

@ -74,7 +74,6 @@ TEST_REQUIREMENTS = (
'pyblackbird',
'pydeconz',
'pydispatcher',
'PyJWT',
'pylitejet',
'pymonoprice',
'pynx584',
@ -98,7 +97,6 @@ TEST_REQUIREMENTS = (
'sqlalchemy',
'statsd',
'uvcclient',
'voluptuous-serialize',
'warrant',
'yahoo-finance',
'pythonwhois',

View File

@ -47,6 +47,7 @@ REQUIRES = [
'pyyaml>=3.13,<4',
'requests==2.19.1',
'voluptuous==0.11.5',
'voluptuous-serialize==2.0.0',
]
MIN_PY_VERSION = '.'.join(map(str, hass_const.REQUIRED_PYTHON_VER))