diff --git a/homeassistant/components/rpi_gpio_pwm/manifest.json b/homeassistant/components/rpi_gpio_pwm/manifest.json index 78ec56799a5..96094e6f75e 100644 --- a/homeassistant/components/rpi_gpio_pwm/manifest.json +++ b/homeassistant/components/rpi_gpio_pwm/manifest.json @@ -2,7 +2,7 @@ "domain": "rpi_gpio_pwm", "name": "pigpio Daemon PWM LED", "documentation": "https://www.home-assistant.io/integrations/rpi_gpio_pwm", - "requirements": ["pwmled==1.6.7"], + "requirements": ["pwmled==1.6.9"], "codeowners": ["@soldag"], "iot_class": "local_push", "loggers": ["adafruit_blinka", "adafruit_circuitpython_pca9685", "pwmled"] diff --git a/requirements_all.txt b/requirements_all.txt index f8d4c19220b..9bb37f7a48a 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1313,7 +1313,7 @@ pushover_complete==1.1.1 pvo==0.2.0 # homeassistant.components.rpi_gpio_pwm -pwmled==1.6.7 +pwmled==1.6.9 # homeassistant.components.canary py-canary==0.5.1 diff --git a/script/pip_check b/script/pip_check index 1b2be961321..14be2d1a796 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=13 +DEPENDENCY_CONFLICTS=12 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)