From 1d5f6c26f96fe65c9a22197bf822ab231fb0497f Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 10 Sep 2026 02:07:11 -0700 Subject: [PATCH] Bump pyatag to 0.3.7.1 (#181796) --- homeassistant/components/atag/manifest.json | 2 +- requirements_all.txt | 2 +- tests/components/atag/test_climate.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/atag/manifest.json b/homeassistant/components/atag/manifest.json index 4939cfba84f7..1ec4e03c5ab3 100644 --- a/homeassistant/components/atag/manifest.json +++ b/homeassistant/components/atag/manifest.json @@ -7,5 +7,5 @@ "integration_type": "device", "iot_class": "local_polling", "loggers": ["pyatag"], - "requirements": ["pyatag==0.3.5.3"] + "requirements": ["pyatag==0.3.7.1"] } diff --git a/requirements_all.txt b/requirements_all.txt index eb3d2804986e..b575c3b60a03 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2087,7 +2087,7 @@ pyaprilaire==0.9.1 pyaqvify==0.0.12 # homeassistant.components.atag -pyatag==0.3.5.3 +pyatag==0.3.7.1 # homeassistant.components.netatmo pyatmo==9.9.0 diff --git a/tests/components/atag/test_climate.py b/tests/components/atag/test_climate.py index 46f46ba0d854..bc9f9b6ad82e 100644 --- a/tests/components/atag/test_climate.py +++ b/tests/components/atag/test_climate.py @@ -111,7 +111,7 @@ async def test_update_failed( """Test data is not destroyed on update failure.""" entry = await init_integration(hass, aioclient_mock) await async_setup_component(hass, HA_DOMAIN, {}) - assert hass.states.get(CLIMATE_ID).state == HVACMode.HEAT + assert hass.states.get(CLIMATE_ID).state == HVACMode.AUTO coordinator = entry.runtime_data with patch("pyatag.AtagOne.update", side_effect=TimeoutError) as updater: await coordinator.async_refresh()