diff --git a/homeassistant/components/volvooncall/manifest.json b/homeassistant/components/volvooncall/manifest.json index 48caa75a824..93b7642425c 100644 --- a/homeassistant/components/volvooncall/manifest.json +++ b/homeassistant/components/volvooncall/manifest.json @@ -2,7 +2,7 @@ "domain": "volvooncall", "name": "Volvo On Call", "documentation": "https://www.home-assistant.io/integrations/volvooncall", - "requirements": ["volvooncall==0.9.1"], + "requirements": ["volvooncall==0.10.0"], "codeowners": ["@molobrakos", "@decompil3d"], "iot_class": "cloud_polling", "loggers": ["geopy", "hbmqtt", "volvooncall"] diff --git a/requirements_all.txt b/requirements_all.txt index 85efc83287a..72b130c1c68 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2380,7 +2380,7 @@ vilfo-api-client==0.3.2 volkszaehler==0.2.1 # homeassistant.components.volvooncall -volvooncall==0.9.1 +volvooncall==0.10.0 # homeassistant.components.verisure vsure==1.7.3 diff --git a/script/pip_check b/script/pip_check index 033638ed479..9d5ec6c87ec 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=5 +DEPENDENCY_CONFLICTS=4 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)