1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 00:20:30 +01:00

Bump pycasperglow to 1.2.0 (#166791)

This commit is contained in:
Mike O'Driscoll
2026-03-30 09:03:40 -04:00
committed by GitHub
parent 20b284d0e9
commit 5be12a213d
4 changed files with 4 additions and 4 deletions

View File

@@ -15,5 +15,5 @@
"iot_class": "local_polling",
"loggers": ["pycasperglow"],
"quality_scale": "silver",
"requirements": ["pycasperglow==1.1.0"]
"requirements": ["pycasperglow==1.2.0"]
}

2
requirements_all.txt generated
View File

@@ -2001,7 +2001,7 @@ pybravia==0.4.1
pycarwings2==2.14
# homeassistant.components.casper_glow
pycasperglow==1.1.0
pycasperglow==1.2.0
# homeassistant.components.cloudflare
pycfdns==3.0.0

View File

@@ -1732,7 +1732,7 @@ pybotvac==0.0.28
pybravia==0.4.1
# homeassistant.components.casper_glow
pycasperglow==1.1.0
pycasperglow==1.2.0
# homeassistant.components.cloudflare
pycfdns==3.0.0

View File

@@ -153,7 +153,7 @@ async def test_select_ignores_remaining_time_updates(
fire_callbacks: Callable[[GlowState], None],
) -> None:
"""Test that callbacks with only remaining time do not change the select state."""
fire_callbacks(GlowState(dimming_time_minutes=44))
fire_callbacks(GlowState(dimming_time_remaining_ms=44))
state = hass.states.get(ENTITY_ID)
assert state is not None