Bump evohome client to 0.4.17 (#108051)

This commit is contained in:
David Bonnes 2024-01-15 08:40:01 +00:00 committed by GitHub
parent c3e8e931e6
commit dd2527db5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 4 deletions

View File

@ -248,16 +248,20 @@ class EvoZone(EvoChild, EvoClimateEntity):
def min_temp(self) -> float:
"""Return the minimum target temperature of a Zone.
The default is 5, but is user-configurable within 5-35 (in Celsius).
The default is 5, but is user-configurable within 5-21 (in Celsius).
"""
if self._evo_device.min_heat_setpoint is None:
return 5
return self._evo_device.min_heat_setpoint
@property
def max_temp(self) -> float:
"""Return the maximum target temperature of a Zone.
The default is 35, but is user-configurable within 5-35 (in Celsius).
The default is 35, but is user-configurable within 21-35 (in Celsius).
"""
if self._evo_device.max_heat_setpoint is None:
return 35
return self._evo_device.max_heat_setpoint
async def async_set_temperature(self, **kwargs: Any) -> None:

View File

@ -5,5 +5,5 @@
"documentation": "https://www.home-assistant.io/integrations/evohome",
"iot_class": "cloud_polling",
"loggers": ["evohomeasync", "evohomeasync2"],
"requirements": ["evohome-async==0.4.15"]
"requirements": ["evohome-async==0.4.17"]
}

View File

@ -806,7 +806,7 @@ eufylife-ble-client==0.1.8
# evdev==1.6.1
# homeassistant.components.evohome
evohome-async==0.4.15
evohome-async==0.4.17
# homeassistant.components.faa_delays
faadelays==2023.9.1