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", "iot_class": "cloud_polling",
"loggers": ["pysensibo"], "loggers": ["pysensibo"],
"quality_scale": "platinum", "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 pysaj==0.0.16
# homeassistant.components.sensibo # homeassistant.components.sensibo
pysensibo==1.0.28 pysensibo==1.0.31
# homeassistant.components.serial # homeassistant.components.serial
# homeassistant.components.zha # homeassistant.components.zha

View File

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

View File

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

View File

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