diff --git a/homeassistant/components/config/config_entries.py b/homeassistant/components/config/config_entries.py index 04d2c713cdc..e0c0e7daaf4 100644 --- a/homeassistant/components/config/config_entries.py +++ b/homeassistant/components/config/config_entries.py @@ -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.""" diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 8d49d5d07c6..168da1f2ead 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -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 diff --git a/requirements_all.txt b/requirements_all.txt index f9d08287930..3e46814126a 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -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 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 236033e2f19..060aef04a9b 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -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 diff --git a/script/gen_requirements_all.py b/script/gen_requirements_all.py index fc8e67b1ab6..a307ec9ee15 100755 --- a/script/gen_requirements_all.py +++ b/script/gen_requirements_all.py @@ -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', diff --git a/setup.py b/setup.py index 71f63adfb64..2978f37ad72 100755 --- a/setup.py +++ b/setup.py @@ -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))