Bump voluptuous-serialize 2.4.0 (#37241)

* Bump voluptuous-serialize 2.4.0

* Add constant to demo

* gen reqs
This commit is contained in:
Paulus Schoutsen 2020-07-06 20:04:35 -07:00 committed by GitHub
parent e5872cc0e4
commit 16ccf0affd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 4 deletions

View file

@ -53,6 +53,7 @@ class OptionsFlowHandler(config_entries.OptionsFlow):
step_id="options_1", step_id="options_1",
data_schema=vol.Schema( data_schema=vol.Schema(
{ {
vol.Required("constant"): "Constant Value",
vol.Optional( vol.Optional(
CONF_BOOLEAN, CONF_BOOLEAN,
default=self.config_entry.options.get(CONF_BOOLEAN, False), default=self.config_entry.options.get(CONF_BOOLEAN, False),

View file

@ -7,6 +7,7 @@
}, },
"options_1": { "options_1": {
"data": { "data": {
"constant": "Constant",
"bool": "Optional boolean", "bool": "Optional boolean",
"int": "Numeric input" "int": "Numeric input"
} }

View file

@ -24,7 +24,7 @@ pyyaml==5.3.1
requests==2.24.0 requests==2.24.0
ruamel.yaml==0.15.100 ruamel.yaml==0.15.100
sqlalchemy==1.3.18 sqlalchemy==1.3.18
voluptuous-serialize==2.3.0 voluptuous-serialize==2.4.0
voluptuous==0.11.7 voluptuous==0.11.7
zeroconf==0.27.1 zeroconf==0.27.1

View file

@ -17,4 +17,4 @@ pyyaml==5.3.1
requests==2.24.0 requests==2.24.0
ruamel.yaml==0.15.100 ruamel.yaml==0.15.100
voluptuous==0.11.7 voluptuous==0.11.7
voluptuous-serialize==2.3.0 voluptuous-serialize==2.4.0

View file

@ -18,7 +18,7 @@ pyyaml==5.3.1
requests==2.24.0 requests==2.24.0
ruamel.yaml==0.15.100 ruamel.yaml==0.15.100
voluptuous==0.11.7 voluptuous==0.11.7
voluptuous-serialize==2.3.0 voluptuous-serialize==2.4.0
# homeassistant.components.nuimo_controller # homeassistant.components.nuimo_controller
--only-binary=all nuimo==0.1.0 --only-binary=all nuimo==0.1.0

View file

@ -51,7 +51,7 @@ REQUIRES = [
"requests==2.24.0", "requests==2.24.0",
"ruamel.yaml==0.15.100", "ruamel.yaml==0.15.100",
"voluptuous==0.11.7", "voluptuous==0.11.7",
"voluptuous-serialize==2.3.0", "voluptuous-serialize==2.4.0",
] ]
MIN_PY_VERSION = ".".join(map(str, hass_const.REQUIRED_PYTHON_VER)) MIN_PY_VERSION = ".".join(map(str, hass_const.REQUIRED_PYTHON_VER))