diff --git a/homeassistant/components/smarttub/manifest.json b/homeassistant/components/smarttub/manifest.json index 90f85b6c839..94e8185bb7d 100644 --- a/homeassistant/components/smarttub/manifest.json +++ b/homeassistant/components/smarttub/manifest.json @@ -5,7 +5,7 @@ "documentation": "https://www.home-assistant.io/integrations/smarttub", "dependencies": [], "codeowners": ["@mdz"], - "requirements": ["python-smarttub==0.0.30"], + "requirements": ["python-smarttub==0.0.31"], "quality_scale": "platinum", "iot_class": "cloud_polling", "loggers": ["smarttub"] diff --git a/requirements_all.txt b/requirements_all.txt index 3304c11499d..e1d6f767c0a 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1928,7 +1928,7 @@ python-qbittorrent==0.4.2 python-ripple-api==0.0.3 # homeassistant.components.smarttub -python-smarttub==0.0.30 +python-smarttub==0.0.31 # homeassistant.components.songpal python-songpal==0.14.1 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 5f54ed21ab4..a62d39fda75 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1254,7 +1254,7 @@ python-nest==4.2.0 python-picnic-api==1.1.0 # homeassistant.components.smarttub -python-smarttub==0.0.30 +python-smarttub==0.0.31 # homeassistant.components.songpal python-songpal==0.14.1 diff --git a/script/pip_check b/script/pip_check index f29ea5a5dd0..5b69e1569c6 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)