From 2b86fc3841011c8af071a59e5370b29587c1b7fb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 18 Feb 2019 11:18:40 +0100 Subject: [PATCH] Upgrade voluptuous-serialize to 2.1.0 (#21166) --- homeassistant/package_constraints.txt | 2 +- requirements_all.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index d0a192a9dc7..775425eb58b 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -14,7 +14,7 @@ pyyaml>=3.13,<4 requests==2.21.0 ruamel.yaml==0.15.88 voluptuous==0.11.5 -voluptuous-serialize==2.0.0 +voluptuous-serialize==2.1.0 pycryptodome>=3.6.6 diff --git a/requirements_all.txt b/requirements_all.txt index 61460db5394..c8729bf3fcc 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -15,7 +15,7 @@ pyyaml>=3.13,<4 requests==2.21.0 ruamel.yaml==0.15.88 voluptuous==0.11.5 -voluptuous-serialize==2.0.0 +voluptuous-serialize==2.1.0 # homeassistant.components.nuimo_controller --only-binary=all nuimo==0.1.0 diff --git a/setup.py b/setup.py index 52be310574a..3b2863e9921 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ REQUIRES = [ 'requests==2.21.0', 'ruamel.yaml==0.15.88', 'voluptuous==0.11.5', - 'voluptuous-serialize==2.0.0', + 'voluptuous-serialize==2.1.0', ] MIN_PY_VERSION = '.'.join(map(str, hass_const.REQUIRED_PYTHON_VER))