Bump pysensibo to 1.0.31 (#96154)

This commit is contained in:
G Johansson 2023-07-08 21:23:11 +02:00 committed by GitHub
parent c27a014a0a
commit 2ebc265184
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 13 deletions

View File

@ -15,5 +15,5 @@
"iot_class": "cloud_polling",
"loggers": ["pysensibo"],
"quality_scale": "platinum",
"requirements": ["pysensibo==1.0.28"]
"requirements": ["pysensibo==1.0.31"]
}

View File

@ -1971,7 +1971,7 @@ pysabnzbd==1.1.1
pysaj==0.0.16
# homeassistant.components.sensibo
pysensibo==1.0.28
pysensibo==1.0.31
# homeassistant.components.serial
# homeassistant.components.zha

View File

@ -1463,7 +1463,7 @@ pyrympro==0.0.7
pysabnzbd==1.1.1
# homeassistant.components.sensibo
pysensibo==1.0.28
pysensibo==1.0.31
# homeassistant.components.serial
# homeassistant.components.zha

View File

@ -86,21 +86,21 @@ async def test_climate(
assert state1.state == "heat"
assert state1.attributes == {
"hvac_modes": [
"cool",
"heat",
"dry",
"heat_cool",
"cool",
"dry",
"fan_only",
"heat",
"off",
],
"min_temp": 10,
"max_temp": 20,
"target_temp_step": 1,
"fan_modes": ["quiet", "low", "medium"],
"fan_modes": ["low", "medium", "quiet"],
"swing_modes": [
"stopped",
"fixedtop",
"fixedmiddletop",
"fixedtop",
"stopped",
],
"current_temperature": 21.2,
"temperature": 25,

View File

@ -44,12 +44,12 @@ async def test_sensor(
"state_class": "measurement",
"unit_of_measurement": "°C",
"on": True,
"targetTemperature": 21,
"temperatureUnit": "C",
"targettemperature": 21,
"temperatureunit": "c",
"mode": "heat",
"fanLevel": "low",
"fanlevel": "low",
"swing": "stopped",
"horizontalSwing": "stopped",
"horizontalswing": "stopped",
"light": "on",
}