Bump version of pyunifiprotect to 3.9.0 (#73168)

Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
Christopher Bailey 2022-06-07 14:19:39 -04:00 committed by GitHub
parent f10cae1052
commit 1bc9867940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -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",

View File

@ -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

View File

@ -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

View File

@ -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 = []