From e386f4846d32092f26de8f85bca78b00e5f416f4 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 5 Feb 2022 13:31:04 +0100 Subject: [PATCH] Update delijn to 1.0.0 (#65776) * Update delijn to 1.0.0 * -1 --- homeassistant/components/delijn/manifest.json | 2 +- homeassistant/components/delijn/sensor.py | 1 - requirements_all.txt | 2 +- script/pip_check | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/delijn/manifest.json b/homeassistant/components/delijn/manifest.json index 1209dff7495..07fa93d976c 100644 --- a/homeassistant/components/delijn/manifest.json +++ b/homeassistant/components/delijn/manifest.json @@ -3,7 +3,7 @@ "name": "De Lijn", "documentation": "https://www.home-assistant.io/integrations/delijn", "codeowners": ["@bollewolle", "@Emilv2"], - "requirements": ["pydelijn==0.6.1"], + "requirements": ["pydelijn==1.0.0"], "iot_class": "cloud_polling", "loggers": ["pydelijn"] } diff --git a/homeassistant/components/delijn/sensor.py b/homeassistant/components/delijn/sensor.py index dea3fcafcde..e04385dcf3d 100644 --- a/homeassistant/components/delijn/sensor.py +++ b/homeassistant/components/delijn/sensor.py @@ -67,7 +67,6 @@ async def async_setup_platform( sensors.append( DeLijnPublicTransportSensor( Passages( - hass.loop, nextpassage[CONF_STOP_ID], nextpassage[CONF_NUMBER_OF_DEPARTURES], api_key, diff --git a/requirements_all.txt b/requirements_all.txt index 8293181d523..08f69d1a9dc 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1464,7 +1464,7 @@ pydanfossair==0.1.0 pydeconz==86 # homeassistant.components.delijn -pydelijn==0.6.1 +pydelijn==1.0.0 # homeassistant.components.dexcom pydexcom==0.2.2 diff --git a/script/pip_check b/script/pip_check index 14be2d1a796..bd988b50e3a 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=12 +DEPENDENCY_CONFLICTS=11 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)