Bump reolink-aio to 0.9.7 (#123263)

This commit is contained in:
starkillerOG 2024-08-07 00:16:57 +02:00 committed by GitHub
parent abaac519c9
commit f4db9e09c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 9 deletions

View File

@ -18,5 +18,5 @@
"documentation": "https://www.home-assistant.io/integrations/reolink",
"iot_class": "local_push",
"loggers": ["reolink_aio"],
"requirements": ["reolink-aio==0.9.6"]
"requirements": ["reolink-aio==0.9.7"]
}

View File

@ -2483,7 +2483,7 @@ renault-api==0.2.5
renson-endura-delta==1.7.1
# homeassistant.components.reolink
reolink-aio==0.9.6
reolink-aio==0.9.7
# homeassistant.components.idteck_prox
rfk101py==0.0.1

View File

@ -1968,7 +1968,7 @@ renault-api==0.2.5
renson-endura-delta==1.7.1
# homeassistant.components.reolink
reolink-aio==0.9.6
reolink-aio==0.9.7
# homeassistant.components.rflink
rflink==0.0.66

View File

@ -110,15 +110,15 @@ async def test_chime_select(
host=reolink_connect,
dev_id=12345678,
channel=0,
name="Test chime",
event_info={
"md": {"switch": 0, "musicId": 0},
"people": {"switch": 0, "musicId": 1},
"visitor": {"switch": 1, "musicId": 2},
},
)
TEST_CHIME.name = "Test chime"
TEST_CHIME.volume = 3
TEST_CHIME.led_state = True
TEST_CHIME.event_info = {
"md": {"switch": 0, "musicId": 0},
"people": {"switch": 0, "musicId": 1},
"visitor": {"switch": 1, "musicId": 2},
}
reolink_connect.chime_list = [TEST_CHIME]