Skip to content

Commit

Permalink
🐛 compatibility update
Browse files Browse the repository at this point in the history
Signed-off-by: Ludy87 <[email protected]>
  • Loading branch information
Ludy87 committed Feb 1, 2024
1 parent c115f68 commit ed64599
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion custom_components/xplora_watch/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from homeassistant.const import (
ATTR_LATITUDE,
ATTR_LONGITUDE,
CONF_COUNTRY_CODE,
CONF_EMAIL,
CONF_LANGUAGE,
CONF_PASSWORD,
Expand All @@ -47,7 +48,6 @@
)

from .const import (
CONF_COUNTRY_CODE,
CONF_HOME_LATITUDE,
CONF_HOME_LONGITUDE,
CONF_HOME_RADIUS,
Expand Down
1 change: 0 additions & 1 deletion custom_components/xplora_watch/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@

ATTR_WATCH: Final = "watch"

CONF_COUNTRY_CODE: Final = "country_code"
CONF_HOME_SAFEZONE: Final = "home_is_safezone"
CONF_HOME_LATITUDE: Final = "home_latitude"
CONF_HOME_LONGITUDE: Final = "home_longitude"
Expand Down
3 changes: 1 addition & 2 deletions custom_components/xplora_watch/const_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import voluptuous as vol

from homeassistant.const import CONF_EMAIL, CONF_LANGUAGE, CONF_PASSWORD
from homeassistant.const import CONF_COUNTRY_CODE, CONF_EMAIL, CONF_LANGUAGE, CONF_PASSWORD
from homeassistant.helpers.selector import (
SelectOptionDict,
SelectSelector,
Expand All @@ -16,7 +16,6 @@
)

from .const import (
CONF_COUNTRY_CODE,
CONF_PHONENUMBER,
CONF_TIMEZONE,
CONF_USERLANG,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/xplora_watch/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import (
CONF_COUNTRY_CODE,
CONF_EMAIL,
CONF_LANGUAGE,
CONF_PASSWORD,
Expand All @@ -36,7 +37,6 @@
ATTR_TRACKER_LNG,
ATTR_TRACKER_POI,
ATTR_TRACKER_RAD,
CONF_COUNTRY_CODE,
CONF_MAPS,
CONF_MESSAGE,
CONF_OPENCAGE_APIKEY,
Expand Down
6 changes: 3 additions & 3 deletions custom_components/xplora_watch/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/Ludy87/xplora_watch/issues",
"requirements": [
"pyxplora_api==2.12.5",
"pyxplora_api==2.12.6",
"backoff==2.2.1",
"requests==2.31.0",
"aiohttp==3.9.1",
"aiohttp==3.9.3",
"geopy==2.4.1",
"dataclasses-json==0.6.3",
"pydub",
"marshmallow-enum"
],
"version": "v2.13.4-beta"
"version": "v2.13.5"
}
4 changes: 2 additions & 2 deletions hacs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Xplora\u00ae Watch",
"zip_release": true,
"render_readme": true,
"homeassistant": "2024.1.0",
"hacs": "1.33.0",
"homeassistant": "2024.1.6",
"hacs": "1.34.0",
"filename": "xplora_watch.zip"
}

0 comments on commit ed64599

Please sign in to comment.