From b9f0b1961e387bbccc708c338d18c2b995b7c5f9 Mon Sep 17 00:00:00 2001 From: Balloob Bot Date: Sun, 16 Aug 2026 20:13:54 +0200 Subject: [PATCH] Update pystiebeleltron to 0.7.0 (#179268) Co-authored-by: Paulus Schoutsen Co-authored-by: Claude Opus 5 --- homeassistant/components/stiebel_eltron/manifest.json | 2 +- requirements_all.txt | 2 +- tests/components/stiebel_eltron/conftest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/stiebel_eltron/manifest.json b/homeassistant/components/stiebel_eltron/manifest.json index eb09787a0778..4aaee654aa56 100644 --- a/homeassistant/components/stiebel_eltron/manifest.json +++ b/homeassistant/components/stiebel_eltron/manifest.json @@ -13,5 +13,5 @@ "iot_class": "local_polling", "loggers": ["pymodbus", "pystiebeleltron"], "quality_scale": "silver", - "requirements": ["pystiebeleltron==0.6.3"] + "requirements": ["pystiebeleltron==0.7.0"] } diff --git a/requirements_all.txt b/requirements_all.txt index a91a0bf81310..be3347fa7fd0 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2626,7 +2626,7 @@ pyspeex-noise==1.0.2 pysqueezebox==0.14.0 # homeassistant.components.stiebel_eltron -pystiebeleltron==0.6.3 +pystiebeleltron==0.7.0 # homeassistant.components.suez_water pysuezV2==2.0.7 diff --git a/tests/components/stiebel_eltron/conftest.py b/tests/components/stiebel_eltron/conftest.py index 7ced6cefb6fa..dcef3caf1a6d 100644 --- a/tests/components/stiebel_eltron/conftest.py +++ b/tests/components/stiebel_eltron/conftest.py @@ -36,7 +36,7 @@ async def mock_connect_tcp( mock_modbus_connection: MockModbusConnection, ) -> AsyncGenerator[AsyncMock]: """Patch connect_tcp to return the in-memory mock connection.""" - assert mock_modbus_connection.connected + await mock_modbus_connection.connect() connect = AsyncMock(return_value=mock_modbus_connection) with ( patch("homeassistant.components.stiebel_eltron.connect_tcp", new=connect),