mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Bump bimmer_connected to 0.9.3 (#72677)
Bump bimmer_connected to 0.9.3, fix retrieved units Co-authored-by: rikroe <rikroe@users.noreply.github.com>
This commit is contained in:
parent
1c334605b6
commit
8d72891d83
@ -6,7 +6,7 @@ import logging
|
|||||||
|
|
||||||
from bimmer_connected.account import MyBMWAccount
|
from bimmer_connected.account import MyBMWAccount
|
||||||
from bimmer_connected.api.regions import get_region_from_name
|
from bimmer_connected.api.regions import get_region_from_name
|
||||||
from bimmer_connected.vehicle.models import GPSPosition
|
from bimmer_connected.models import GPSPosition
|
||||||
from httpx import HTTPError, TimeoutException
|
from httpx import HTTPError, TimeoutException
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
@ -32,6 +32,7 @@ class BMWDataUpdateCoordinator(DataUpdateCoordinator):
|
|||||||
entry.data[CONF_PASSWORD],
|
entry.data[CONF_PASSWORD],
|
||||||
get_region_from_name(entry.data[CONF_REGION]),
|
get_region_from_name(entry.data[CONF_REGION]),
|
||||||
observer_position=GPSPosition(hass.config.latitude, hass.config.longitude),
|
observer_position=GPSPosition(hass.config.latitude, hass.config.longitude),
|
||||||
|
use_metric_units=hass.config.units.is_metric,
|
||||||
)
|
)
|
||||||
self.read_only = entry.options[CONF_READ_ONLY]
|
self.read_only = entry.options[CONF_READ_ONLY]
|
||||||
self._entry = entry
|
self._entry = entry
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"domain": "bmw_connected_drive",
|
"domain": "bmw_connected_drive",
|
||||||
"name": "BMW Connected Drive",
|
"name": "BMW Connected Drive",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/bmw_connected_drive",
|
"documentation": "https://www.home-assistant.io/integrations/bmw_connected_drive",
|
||||||
"requirements": ["bimmer_connected==0.9.2"],
|
"requirements": ["bimmer_connected==0.9.3"],
|
||||||
"codeowners": ["@gerard33", "@rikroe"],
|
"codeowners": ["@gerard33", "@rikroe"],
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
|
@ -6,8 +6,8 @@ from dataclasses import dataclass
|
|||||||
import logging
|
import logging
|
||||||
from typing import cast
|
from typing import cast
|
||||||
|
|
||||||
|
from bimmer_connected.models import ValueWithUnit
|
||||||
from bimmer_connected.vehicle import MyBMWVehicle
|
from bimmer_connected.vehicle import MyBMWVehicle
|
||||||
from bimmer_connected.vehicle.models import ValueWithUnit
|
|
||||||
|
|
||||||
from homeassistant.components.sensor import (
|
from homeassistant.components.sensor import (
|
||||||
SensorDeviceClass,
|
SensorDeviceClass,
|
||||||
|
@ -394,7 +394,7 @@ beautifulsoup4==4.11.1
|
|||||||
bellows==0.30.0
|
bellows==0.30.0
|
||||||
|
|
||||||
# homeassistant.components.bmw_connected_drive
|
# homeassistant.components.bmw_connected_drive
|
||||||
bimmer_connected==0.9.2
|
bimmer_connected==0.9.3
|
||||||
|
|
||||||
# homeassistant.components.bizkaibus
|
# homeassistant.components.bizkaibus
|
||||||
bizkaibus==0.1.1
|
bizkaibus==0.1.1
|
||||||
|
@ -309,7 +309,7 @@ beautifulsoup4==4.11.1
|
|||||||
bellows==0.30.0
|
bellows==0.30.0
|
||||||
|
|
||||||
# homeassistant.components.bmw_connected_drive
|
# homeassistant.components.bmw_connected_drive
|
||||||
bimmer_connected==0.9.2
|
bimmer_connected==0.9.3
|
||||||
|
|
||||||
# homeassistant.components.blebox
|
# homeassistant.components.blebox
|
||||||
blebox_uniapi==1.3.3
|
blebox_uniapi==1.3.3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user