Bump version of pyunifiprotect to 3.9.0 (#73168)
Co-authored-by: J. Nick Koston <nick@koston.org>pull/73334/head
parent
1253f7f85d
commit
300d2a0881
|
@ -3,7 +3,7 @@
|
|||
"name": "UniFi Protect",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/unifiprotect",
|
||||
"requirements": ["pyunifiprotect==3.6.0", "unifi-discovery==1.1.3"],
|
||||
"requirements": ["pyunifiprotect==3.9.0", "unifi-discovery==1.1.3"],
|
||||
"dependencies": ["http"],
|
||||
"codeowners": ["@briis", "@AngellusMortis", "@bdraco"],
|
||||
"quality_scale": "platinum",
|
||||
|
|
|
@ -1993,7 +1993,7 @@ pytrafikverket==0.2.0.1
|
|||
pyudev==0.22.0
|
||||
|
||||
# homeassistant.components.unifiprotect
|
||||
pyunifiprotect==3.6.0
|
||||
pyunifiprotect==3.9.0
|
||||
|
||||
# homeassistant.components.uptimerobot
|
||||
pyuptimerobot==22.2.0
|
||||
|
|
|
@ -1322,7 +1322,7 @@ pytrafikverket==0.2.0.1
|
|||
pyudev==0.22.0
|
||||
|
||||
# homeassistant.components.unifiprotect
|
||||
pyunifiprotect==3.6.0
|
||||
pyunifiprotect==3.9.0
|
||||
|
||||
# homeassistant.components.uptimerobot
|
||||
pyuptimerobot==22.2.0
|
||||
|
|
|
@ -168,7 +168,7 @@ async def sensor_fixture(
|
|||
sensor_obj.motion_detected_at = now - timedelta(hours=1)
|
||||
sensor_obj.open_status_changed_at = now - timedelta(hours=1)
|
||||
sensor_obj.alarm_triggered_at = now - timedelta(hours=1)
|
||||
sensor_obj.tampering_detected_at = now - timedelta(hours=1)
|
||||
sensor_obj.tampering_detected_at = None
|
||||
|
||||
mock_entry.api.bootstrap.reset_objects()
|
||||
mock_entry.api.bootstrap.nvr.system_info.storage.devices = []
|
||||
|
@ -204,7 +204,7 @@ async def sensor_none_fixture(
|
|||
sensor_obj.mount_type = MountType.LEAK
|
||||
sensor_obj.battery_status.is_low = False
|
||||
sensor_obj.alarm_settings.is_enabled = False
|
||||
sensor_obj.tampering_detected_at = now - timedelta(hours=1)
|
||||
sensor_obj.tampering_detected_at = None
|
||||
|
||||
mock_entry.api.bootstrap.reset_objects()
|
||||
mock_entry.api.bootstrap.nvr.system_info.storage.devices = []
|
||||
|
|
Loading…
Reference in New Issue