diff --git a/homeassistant/components/surepetcare/manifest.json b/homeassistant/components/surepetcare/manifest.json index 6368bab898eba7..c6629cb7d24616 100644 --- a/homeassistant/components/surepetcare/manifest.json +++ b/homeassistant/components/surepetcare/manifest.json @@ -3,7 +3,7 @@ "name": "Sure Petcare", "documentation": "https://www.home-assistant.io/integrations/surepetcare", "codeowners": ["@benleb", "@danielhiversen"], - "requirements": ["surepy==0.7.2"], + "requirements": ["surepy==0.8.0"], "iot_class": "cloud_polling", "config_flow": true, "loggers": ["rich", "surepy"] diff --git a/requirements_all.txt b/requirements_all.txt index 2fe8c9b8a535b2..4e49ffccfb9cc0 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2318,7 +2318,7 @@ subarulink==0.5.0 sunwatcher==0.2.1 # homeassistant.components.surepetcare -surepy==0.7.2 +surepy==0.8.0 # homeassistant.components.swiss_hydrological_data swisshydrodata==0.1.0 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index d575459abce9fc..214b4d0988bb62 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1594,7 +1594,7 @@ subarulink==0.5.0 sunwatcher==0.2.1 # homeassistant.components.surepetcare -surepy==0.7.2 +surepy==0.8.0 # homeassistant.components.system_bridge systembridgeconnector==3.4.4 diff --git a/script/pip_check b/script/pip_check index f29ea5a5dd0a66..5b69e1569c667b 100755 --- a/script/pip_check +++ b/script/pip_check @@ -3,7 +3,7 @@ PIP_CACHE=$1 # Number of existing dependency conflicts # Update if a PR resolve one! -DEPENDENCY_CONFLICTS=6 +DEPENDENCY_CONFLICTS=5 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)