Bump nexia to 0.9.6 (#48982)
- Now returns None when a humidity sensor cannot be read instead of throwing an exceptionpull/48995/head
parent
7e30ab2fb2
commit
a0a8638a2d
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"domain": "nexia",
|
||||
"name": "Nexia",
|
||||
"requirements": ["nexia==0.9.5"],
|
||||
"requirements": ["nexia==0.9.6"],
|
||||
"codeowners": ["@bdraco"],
|
||||
"documentation": "https://www.home-assistant.io/integrations/nexia",
|
||||
"config_flow": true,
|
||||
|
|
|
@ -13,4 +13,6 @@ def is_invalid_auth_code(http_status_code):
|
|||
|
||||
def percent_conv(val):
|
||||
"""Convert an actual percentage (0.0-1.0) to 0-100 scale."""
|
||||
if val is None:
|
||||
return None
|
||||
return round(val * 100.0, 1)
|
||||
|
|
|
@ -988,7 +988,7 @@ netdisco==2.8.2
|
|||
neurio==0.3.1
|
||||
|
||||
# homeassistant.components.nexia
|
||||
nexia==0.9.5
|
||||
nexia==0.9.6
|
||||
|
||||
# homeassistant.components.nextcloud
|
||||
nextcloudmonitor==1.1.0
|
||||
|
|
|
@ -530,7 +530,7 @@ nessclient==0.9.15
|
|||
netdisco==2.8.2
|
||||
|
||||
# homeassistant.components.nexia
|
||||
nexia==0.9.5
|
||||
nexia==0.9.6
|
||||
|
||||
# homeassistant.components.notify_events
|
||||
notify-events==1.0.4
|
||||
|
|
Loading…
Reference in New Issue