Bump pysuezV2 to 2.0.7 (#149436)

This commit is contained in:
jb101010-2 2025-07-26 12:38:38 +02:00 committed by GitHub
parent be5109fddf
commit e1501d7510
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 4 deletions

View File

@ -8,5 +8,5 @@
"iot_class": "cloud_polling",
"loggers": ["pysuez", "regex"],
"quality_scale": "bronze",
"requirements": ["pysuezV2==2.0.5"]
"requirements": ["pysuezV2==2.0.7"]
}

2
requirements_all.txt generated
View File

@ -2385,7 +2385,7 @@ pysqueezebox==0.12.1
pystiebeleltron==0.1.0
# homeassistant.components.suez_water
pysuezV2==2.0.5
pysuezV2==2.0.7
# homeassistant.components.switchbee
pyswitchbee==1.8.3

View File

@ -1988,7 +1988,7 @@ pysqueezebox==0.12.1
pystiebeleltron==0.1.0
# homeassistant.components.suez_water
pysuezV2==2.0.5
pysuezV2==2.0.7
# homeassistant.components.switchbee
pyswitchbee==1.8.3

View File

@ -87,5 +87,7 @@ def mock_suez_client(recorder_mock: Recorder) -> Generator[AsyncMock]:
)
suez_client.fetch_aggregated_data.return_value = result
suez_client.get_price.return_value = PriceResult("4.74")
suez_client.get_price.return_value = PriceResult(
"OK", {"price": 4.74}, "Price is 4.74"
)
yield suez_client