Move voluptuous-serialize to core requirement (#16507)

This commit is contained in:
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) FlowManagerIndexView, FlowManagerResourceView)
REQUIREMENTS = ['voluptuous-serialize==2.0.0']
@asyncio.coroutine @asyncio.coroutine
def async_setup(hass): def async_setup(hass):
"""Enable the Home Assistant views.""" """Enable the Home Assistant views."""

View file

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

View file

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

View file

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

View file

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

View file

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