Bump apprise version to avoid sync in async issues (#41253)
This commit is contained in:
parent
f145a8c8d1
commit
baef8b033a
4 changed files with 4 additions and 8 deletions
|
@ -2,6 +2,6 @@
|
||||||
"domain": "apprise",
|
"domain": "apprise",
|
||||||
"name": "Apprise",
|
"name": "Apprise",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/apprise",
|
"documentation": "https://www.home-assistant.io/integrations/apprise",
|
||||||
"requirements": ["apprise==0.8.8"],
|
"requirements": ["apprise==0.8.9"],
|
||||||
"codeowners": ["@caronc"]
|
"codeowners": ["@caronc"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,12 +28,8 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
||||||
|
|
||||||
def get_service(hass, config, discovery_info=None):
|
def get_service(hass, config, discovery_info=None):
|
||||||
"""Get the Apprise notification service."""
|
"""Get the Apprise notification service."""
|
||||||
|
|
||||||
# Create our Apprise Asset Object
|
|
||||||
asset = apprise.AppriseAsset(async_mode=False)
|
|
||||||
|
|
||||||
# Create our Apprise Instance (reference our asset)
|
# Create our Apprise Instance (reference our asset)
|
||||||
a_obj = apprise.Apprise(asset=asset)
|
a_obj = apprise.Apprise()
|
||||||
|
|
||||||
if config.get(CONF_FILE):
|
if config.get(CONF_FILE):
|
||||||
# Sourced from a Configuration File
|
# Sourced from a Configuration File
|
||||||
|
|
|
@ -263,7 +263,7 @@ apcaccess==0.0.13
|
||||||
apns2==0.3.0
|
apns2==0.3.0
|
||||||
|
|
||||||
# homeassistant.components.apprise
|
# homeassistant.components.apprise
|
||||||
apprise==0.8.8
|
apprise==0.8.9
|
||||||
|
|
||||||
# homeassistant.components.aprs
|
# homeassistant.components.aprs
|
||||||
aprslib==0.6.46
|
aprslib==0.6.46
|
||||||
|
|
|
@ -158,7 +158,7 @@ androidtv[async]==0.0.50
|
||||||
apns2==0.3.0
|
apns2==0.3.0
|
||||||
|
|
||||||
# homeassistant.components.apprise
|
# homeassistant.components.apprise
|
||||||
apprise==0.8.8
|
apprise==0.8.9
|
||||||
|
|
||||||
# homeassistant.components.aprs
|
# homeassistant.components.aprs
|
||||||
aprslib==0.6.46
|
aprslib==0.6.46
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue