From 995f4fbfda214616eaaaadbf87c5292c7254f14e Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 22 Feb 2022 14:45:05 +0100 Subject: [PATCH] Upgrade pwmled to 1.6.10 (#67034) --- homeassistant/components/rpi_gpio_pwm/manifest.json | 2 +- requirements_all.txt | 2 +- script/pip_check | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/rpi_gpio_pwm/manifest.json b/homeassistant/components/rpi_gpio_pwm/manifest.json index 96094e6f75e..403f607e379 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.9"], + "requirements": ["pwmled==1.6.10"], "codeowners": ["@soldag"], "iot_class": "local_push", "loggers": ["adafruit_blinka", "adafruit_circuitpython_pca9685", "pwmled"] diff --git a/requirements_all.txt b/requirements_all.txt index 8a1ea7d86d6..2adac10bc6c 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1317,7 +1317,7 @@ pushover_complete==1.1.1 pvo==0.2.2 # homeassistant.components.rpi_gpio_pwm -pwmled==1.6.9 +pwmled==1.6.10 # homeassistant.components.canary py-canary==0.5.1 diff --git a/script/pip_check b/script/pip_check index af47f101fbb..c4ced71605a 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=9 +DEPENDENCY_CONFLICTS=8 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)