Update aioairzone to v0.6.3 and fix issue with latest firmware update (#94100)
parent
49388eab3a
commit
7a658117bb
|
@ -11,5 +11,5 @@
|
||||||
"documentation": "https://www.home-assistant.io/integrations/airzone",
|
"documentation": "https://www.home-assistant.io/integrations/airzone",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["aioairzone"],
|
"loggers": ["aioairzone"],
|
||||||
"requirements": ["aioairzone==0.6.1"]
|
"requirements": ["aioairzone==0.6.3"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,7 +119,7 @@ aioairq==0.2.4
|
||||||
aioairzone-cloud==0.1.7
|
aioairzone-cloud==0.1.7
|
||||||
|
|
||||||
# homeassistant.components.airzone
|
# homeassistant.components.airzone
|
||||||
aioairzone==0.6.1
|
aioairzone==0.6.3
|
||||||
|
|
||||||
# homeassistant.components.ambient_station
|
# homeassistant.components.ambient_station
|
||||||
aioambient==2023.04.0
|
aioambient==2023.04.0
|
||||||
|
|
|
@ -109,7 +109,7 @@ aioairq==0.2.4
|
||||||
aioairzone-cloud==0.1.7
|
aioairzone-cloud==0.1.7
|
||||||
|
|
||||||
# homeassistant.components.airzone
|
# homeassistant.components.airzone
|
||||||
aioairzone==0.6.1
|
aioairzone==0.6.3
|
||||||
|
|
||||||
# homeassistant.components.ambient_station
|
# homeassistant.components.ambient_station
|
||||||
aioambient==2023.04.0
|
aioambient==2023.04.0
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
"""The climate tests for the Airzone platform."""
|
"""The climate tests for the Airzone platform."""
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from aioairzone.common import OperationMode
|
|
||||||
from aioairzone.const import (
|
from aioairzone.const import (
|
||||||
API_COOL_SET_POINT,
|
API_COOL_SET_POINT,
|
||||||
API_DATA,
|
API_DATA,
|
||||||
API_HEAT_SET_POINT,
|
API_HEAT_SET_POINT,
|
||||||
API_MAX_TEMP,
|
API_MAX_TEMP,
|
||||||
API_MIN_TEMP,
|
API_MIN_TEMP,
|
||||||
API_MODE,
|
|
||||||
API_ON,
|
API_ON,
|
||||||
API_SET_POINT,
|
API_SET_POINT,
|
||||||
API_SPEED,
|
API_SPEED,
|
||||||
|
@ -336,7 +334,6 @@ async def test_airzone_climate_set_hvac_mode(hass: HomeAssistant) -> None:
|
||||||
{
|
{
|
||||||
API_SYSTEM_ID: 1,
|
API_SYSTEM_ID: 1,
|
||||||
API_ZONE_ID: 1,
|
API_ZONE_ID: 1,
|
||||||
API_MODE: OperationMode.COOLING.value,
|
|
||||||
API_ON: 1,
|
API_ON: 1,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue