mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Bump simplisafe-python to 11.0.2 (#53121)
* Bump simplisafe-python to 11.0.2 * Fix CI
This commit is contained in:
parent
236738c455
commit
a8ea214f2e
@ -3,7 +3,11 @@ import asyncio
|
|||||||
from uuid import UUID
|
from uuid import UUID
|
||||||
|
|
||||||
from simplipy import get_api
|
from simplipy import get_api
|
||||||
from simplipy.errors import EndpointUnavailable, InvalidCredentialsError, SimplipyError
|
from simplipy.errors import (
|
||||||
|
EndpointUnavailableError,
|
||||||
|
InvalidCredentialsError,
|
||||||
|
SimplipyError,
|
||||||
|
)
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.const import ATTR_CODE, CONF_CODE, CONF_PASSWORD, CONF_USERNAME
|
from homeassistant.const import ATTR_CODE, CONF_CODE, CONF_PASSWORD, CONF_USERNAME
|
||||||
@ -372,7 +376,7 @@ class SimpliSafe:
|
|||||||
if isinstance(result, InvalidCredentialsError):
|
if isinstance(result, InvalidCredentialsError):
|
||||||
raise ConfigEntryAuthFailed("Invalid credentials") from result
|
raise ConfigEntryAuthFailed("Invalid credentials") from result
|
||||||
|
|
||||||
if isinstance(result, EndpointUnavailable):
|
if isinstance(result, EndpointUnavailableError):
|
||||||
# In case the user attempts an action not allowed in their current plan,
|
# In case the user attempts an action not allowed in their current plan,
|
||||||
# we merely log that message at INFO level (so the user is aware,
|
# we merely log that message at INFO level (so the user is aware,
|
||||||
# but not spammed with ERROR messages that they cannot change):
|
# but not spammed with ERROR messages that they cannot change):
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "SimpliSafe",
|
"name": "SimpliSafe",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/simplisafe",
|
"documentation": "https://www.home-assistant.io/integrations/simplisafe",
|
||||||
"requirements": ["simplisafe-python==11.0.1"],
|
"requirements": ["simplisafe-python==11.0.2"],
|
||||||
"codeowners": ["@bachya"],
|
"codeowners": ["@bachya"],
|
||||||
"iot_class": "cloud_polling"
|
"iot_class": "cloud_polling"
|
||||||
}
|
}
|
||||||
|
@ -2097,7 +2097,7 @@ simplehound==0.3
|
|||||||
simplepush==1.1.4
|
simplepush==1.1.4
|
||||||
|
|
||||||
# homeassistant.components.simplisafe
|
# homeassistant.components.simplisafe
|
||||||
simplisafe-python==11.0.1
|
simplisafe-python==11.0.2
|
||||||
|
|
||||||
# homeassistant.components.sisyphus
|
# homeassistant.components.sisyphus
|
||||||
sisyphus-control==3.0
|
sisyphus-control==3.0
|
||||||
|
@ -1143,7 +1143,7 @@ sharkiqpy==0.1.8
|
|||||||
simplehound==0.3
|
simplehound==0.3
|
||||||
|
|
||||||
# homeassistant.components.simplisafe
|
# homeassistant.components.simplisafe
|
||||||
simplisafe-python==11.0.1
|
simplisafe-python==11.0.2
|
||||||
|
|
||||||
# homeassistant.components.slack
|
# homeassistant.components.slack
|
||||||
slackclient==2.5.0
|
slackclient==2.5.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user