diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f647dd0460241..acc34a298b107 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,7 +37,7 @@ on: type: boolean env: - CACHE_VERSION: 2 + CACHE_VERSION: 3 UV_CACHE_VERSION: 1 MYPY_CACHE_VERSION: 1 HA_SHORT_VERSION: "2026.3" diff --git a/homeassistant/components/homematic/__init__.py b/homeassistant/components/homematic/__init__.py index 4ce57afe9466c..41d965fab1106 100644 --- a/homeassistant/components/homematic/__init__.py +++ b/homeassistant/components/homematic/__init__.py @@ -3,6 +3,7 @@ from datetime import datetime from functools import partial import logging +from typing import Any from pyhomematic import HMConnection import voluptuous as vol @@ -215,8 +216,11 @@ def setup(hass: HomeAssistant, config: ConfigType) -> bool: hass.data[DATA_CONF] = remotes = {} hass.data[DATA_STORE] = set() + interfaces: dict[str, dict[str, Any]] = conf[CONF_INTERFACES] + hosts: dict[str, dict[str, Any]] = conf[CONF_HOSTS] + # Create hosts-dictionary for pyhomematic - for rname, rconfig in conf[CONF_INTERFACES].items(): + for rname, rconfig in interfaces.items(): remotes[rname] = { "ip": rconfig.get(CONF_HOST), "port": rconfig.get(CONF_PORT), @@ -232,7 +236,7 @@ def setup(hass: HomeAssistant, config: ConfigType) -> bool: "connect": True, } - for sname, sconfig in conf[CONF_HOSTS].items(): + for sname, sconfig in hosts.items(): remotes[sname] = { "ip": sconfig.get(CONF_HOST), "port": sconfig[CONF_PORT], @@ -258,7 +262,7 @@ def setup(hass: HomeAssistant, config: ConfigType) -> bool: hass.bus.listen_once(EVENT_HOMEASSISTANT_STOP, hass.data[DATA_HOMEMATIC].stop) # Init homematic hubs - entity_hubs = [HMHub(hass, homematic, hub_name) for hub_name in conf[CONF_HOSTS]] + entity_hubs = [HMHub(hass, homematic, hub_name) for hub_name in hosts] def _hm_service_virtualkey(service: ServiceCall) -> None: """Service to handle virtualkey servicecalls.""" @@ -294,7 +298,7 @@ def _hm_service_virtualkey(service: ServiceCall) -> None: def _service_handle_value(service: ServiceCall) -> None: """Service to call setValue method for HomeMatic system variable.""" - entity_ids = service.data.get(ATTR_ENTITY_ID) + entity_ids: list[str] | None = service.data.get(ATTR_ENTITY_ID) name = service.data[ATTR_NAME] value = service.data[ATTR_VALUE] diff --git a/homeassistant/components/homematic/entity.py b/homeassistant/components/homematic/entity.py index f9e8de703fb4f..9a153eb0aa8c6 100644 --- a/homeassistant/components/homematic/entity.py +++ b/homeassistant/components/homematic/entity.py @@ -11,6 +11,7 @@ from pyhomematic.devicetypes.generic import HMGeneric from homeassistant.const import ATTR_NAME +from homeassistant.core import HomeAssistant from homeassistant.helpers import config_validation as cv from homeassistant.helpers.entity import Entity, EntityDescription from homeassistant.helpers.event import track_time_interval @@ -199,14 +200,14 @@ class HMHub(Entity): _attr_should_poll = False - def __init__(self, hass, homematic, name): + def __init__(self, hass: HomeAssistant, homematic: HMConnection, name: str) -> None: """Initialize HomeMatic hub.""" self.hass = hass self.entity_id = f"{DOMAIN}.{name.lower()}" self._homematic = homematic - self._variables = {} + self._variables: dict[str, Any] = {} self._name = name - self._state = None + self._state: int | None = None # Load data track_time_interval(self.hass, self._update_hub, SCAN_INTERVAL_HUB) @@ -216,12 +217,12 @@ def __init__(self, hass, homematic, name): self.hass.add_job(self._update_variables, None) @property - def name(self): + def name(self) -> str: """Return the name of the device.""" return self._name @property - def state(self): + def state(self) -> int | None: """Return the state of the entity.""" return self._state @@ -231,7 +232,7 @@ def extra_state_attributes(self) -> dict[str, Any]: return self._variables.copy() @property - def icon(self): + def icon(self) -> str: """Return the icon to use in the frontend, if any.""" return "mdi:gradient-vertical" diff --git a/homeassistant/components/portainer/manifest.json b/homeassistant/components/portainer/manifest.json index 1dcb4a0e6f1e1..cf3ff3d891183 100644 --- a/homeassistant/components/portainer/manifest.json +++ b/homeassistant/components/portainer/manifest.json @@ -7,5 +7,5 @@ "integration_type": "service", "iot_class": "local_polling", "quality_scale": "bronze", - "requirements": ["pyportainer==1.0.23"] + "requirements": ["pyportainer==1.0.27"] } diff --git a/homeassistant/components/steamist/manifest.json b/homeassistant/components/steamist/manifest.json index cabb8835608a0..c094de9e2459d 100644 --- a/homeassistant/components/steamist/manifest.json +++ b/homeassistant/components/steamist/manifest.json @@ -14,6 +14,7 @@ } ], "documentation": "https://www.home-assistant.io/integrations/steamist", + "integration_type": "device", "iot_class": "local_polling", "loggers": ["aiosteamist", "discovery30303"], "requirements": ["aiosteamist==1.0.1", "discovery30303==0.3.3"] diff --git a/homeassistant/components/surepetcare/manifest.json b/homeassistant/components/surepetcare/manifest.json index bcfd10d2f0208..4aa24a581e751 100644 --- a/homeassistant/components/surepetcare/manifest.json +++ b/homeassistant/components/surepetcare/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@benleb", "@danielhiversen"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/surepetcare", + "integration_type": "hub", "iot_class": "cloud_polling", "loggers": ["rich", "surepy"], "requirements": ["surepy==0.9.0"] diff --git a/homeassistant/components/swiss_hydrological_data/sensor.py b/homeassistant/components/swiss_hydrological_data/sensor.py index e475ae909d061..fdec1df6df2f3 100644 --- a/homeassistant/components/swiss_hydrological_data/sensor.py +++ b/homeassistant/components/swiss_hydrological_data/sensor.py @@ -4,7 +4,7 @@ from datetime import timedelta import logging -from typing import Any +from typing import TYPE_CHECKING, Any from swisshydrodata import SwissHydroData import voluptuous as vol @@ -67,8 +67,8 @@ def setup_platform( discovery_info: DiscoveryInfoType | None = None, ) -> None: """Set up the Swiss hydrological sensor.""" - station = config[CONF_STATION] - monitored_conditions = config[CONF_MONITORED_CONDITIONS] + station: int = config[CONF_STATION] + monitored_conditions: list[str] = config[CONF_MONITORED_CONDITIONS] hydro_data = HydrologicalData(station) hydro_data.update() @@ -93,38 +93,24 @@ class SwissHydrologicalDataSensor(SensorEntity): "Data provided by the Swiss Federal Office for the Environment FOEN" ) - def __init__(self, hydro_data, station, condition): + def __init__( + self, hydro_data: HydrologicalData, station: int, condition: str + ) -> None: """Initialize the Swiss hydrological sensor.""" self.hydro_data = hydro_data + data = hydro_data.data + if TYPE_CHECKING: + # Setup will fail in setup_platform if the data is None. + assert data is not None + self._condition = condition - self._data = self._state = self._unit_of_measurement = None - self._icon = CONDITIONS[condition] + self._data: dict[str, Any] | None = data + self._attr_icon = CONDITIONS[condition] + self._attr_name = f"{data['water-body-name']} {condition}" + self._attr_native_unit_of_measurement = data["parameters"][condition]["unit"] + self._attr_unique_id = f"{station}_{condition}" self._station = station - @property - def name(self): - """Return the name of the sensor.""" - return f"{self._data['water-body-name']} {self._condition}" - - @property - def unique_id(self) -> str: - """Return a unique, friendly identifier for this entity.""" - return f"{self._station}_{self._condition}" - - @property - def native_unit_of_measurement(self): - """Return the unit of measurement of this entity, if any.""" - if self._state is not None: - return self.hydro_data.data["parameters"][self._condition]["unit"] - return None - - @property - def native_value(self): - """Return the state of the sensor.""" - if isinstance(self._state, (int, float)): - return round(self._state, 2) - return None - @property def extra_state_attributes(self) -> dict[str, Any]: """Return the device state attributes.""" @@ -146,32 +132,28 @@ def extra_state_attributes(self) -> dict[str, Any]: return attrs - @property - def icon(self): - """Icon to use in the frontend.""" - return self._icon - def update(self) -> None: """Get the latest data and update the state.""" self.hydro_data.update() self._data = self.hydro_data.data - if self._data is None: - self._state = None - else: - self._state = self._data["parameters"][self._condition]["value"] + self._attr_native_value = None + if self._data is not None: + state = self._data["parameters"][self._condition]["value"] + if isinstance(state, (int, float)): + self._attr_native_value = round(state, 2) class HydrologicalData: """The Class for handling the data retrieval.""" - def __init__(self, station): + def __init__(self, station: int) -> None: """Initialize the data object.""" self.station = station - self.data = None + self.data: dict[str, Any] | None = None @Throttle(MIN_TIME_BETWEEN_UPDATES) - def update(self): + def update(self) -> None: """Get the latest data.""" shd = SwissHydroData() diff --git a/homeassistant/components/syncthing/manifest.json b/homeassistant/components/syncthing/manifest.json index 40d93dce4c7ed..39d983f0580ce 100644 --- a/homeassistant/components/syncthing/manifest.json +++ b/homeassistant/components/syncthing/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@zhulik"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/syncthing", + "integration_type": "service", "iot_class": "local_polling", "loggers": ["aiosyncthing"], "requirements": ["aiosyncthing==0.7.1"] diff --git a/homeassistant/components/syncthru/manifest.json b/homeassistant/components/syncthru/manifest.json index a33cefd2c703d..ec6ecce7acea7 100644 --- a/homeassistant/components/syncthru/manifest.json +++ b/homeassistant/components/syncthru/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@nielstron"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/syncthru", + "integration_type": "device", "iot_class": "local_polling", "loggers": ["pysyncthru"], "requirements": ["PySyncThru==0.8.0", "url-normalize==2.2.1"], diff --git a/homeassistant/components/tami4/manifest.json b/homeassistant/components/tami4/manifest.json index e09970c341da7..962eb4d62fdcd 100644 --- a/homeassistant/components/tami4/manifest.json +++ b/homeassistant/components/tami4/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@Guy293"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/tami4", + "integration_type": "device", "iot_class": "cloud_polling", "requirements": ["Tami4EdgeAPI==3.0"] } diff --git a/homeassistant/components/telegram_bot/manifest.json b/homeassistant/components/telegram_bot/manifest.json index 0d320cfe3b088..514c84bde5cb8 100644 --- a/homeassistant/components/telegram_bot/manifest.json +++ b/homeassistant/components/telegram_bot/manifest.json @@ -5,6 +5,7 @@ "config_flow": true, "dependencies": ["http"], "documentation": "https://www.home-assistant.io/integrations/telegram_bot", + "integration_type": "service", "iot_class": "cloud_push", "loggers": ["telegram"], "quality_scale": "silver", diff --git a/homeassistant/components/tellduslive/manifest.json b/homeassistant/components/tellduslive/manifest.json index 4ebf1a334bd66..07795c2b2bf9d 100644 --- a/homeassistant/components/tellduslive/manifest.json +++ b/homeassistant/components/tellduslive/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@fredrike"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/tellduslive", + "integration_type": "hub", "iot_class": "cloud_polling", "requirements": ["tellduslive==0.10.12"] } diff --git a/homeassistant/components/tesla_wall_connector/manifest.json b/homeassistant/components/tesla_wall_connector/manifest.json index e01e6e5a5d823..d008d99f1c16a 100644 --- a/homeassistant/components/tesla_wall_connector/manifest.json +++ b/homeassistant/components/tesla_wall_connector/manifest.json @@ -18,6 +18,7 @@ } ], "documentation": "https://www.home-assistant.io/integrations/tesla_wall_connector", + "integration_type": "device", "iot_class": "local_polling", "loggers": ["tesla_wall_connector"], "requirements": ["tesla-wall-connector==1.1.0"] diff --git a/homeassistant/components/thermobeacon/manifest.json b/homeassistant/components/thermobeacon/manifest.json index 7223a34d68354..e1dbf9e44ebe4 100644 --- a/homeassistant/components/thermobeacon/manifest.json +++ b/homeassistant/components/thermobeacon/manifest.json @@ -53,6 +53,7 @@ "config_flow": true, "dependencies": ["bluetooth_adapters"], "documentation": "https://www.home-assistant.io/integrations/thermobeacon", + "integration_type": "device", "iot_class": "local_push", "requirements": ["thermobeacon-ble==0.10.0"] } diff --git a/homeassistant/components/thermopro/manifest.json b/homeassistant/components/thermopro/manifest.json index bee126b54e8af..8608dfbc53838 100644 --- a/homeassistant/components/thermopro/manifest.json +++ b/homeassistant/components/thermopro/manifest.json @@ -23,6 +23,7 @@ "config_flow": true, "dependencies": ["bluetooth_adapters"], "documentation": "https://www.home-assistant.io/integrations/thermopro", + "integration_type": "device", "iot_class": "local_push", "requirements": ["thermopro-ble==1.1.3"] } diff --git a/homeassistant/components/tibber/manifest.json b/homeassistant/components/tibber/manifest.json index d44a6b64008b1..06423dfb6669e 100644 --- a/homeassistant/components/tibber/manifest.json +++ b/homeassistant/components/tibber/manifest.json @@ -5,6 +5,7 @@ "config_flow": true, "dependencies": ["application_credentials", "recorder"], "documentation": "https://www.home-assistant.io/integrations/tibber", + "integration_type": "hub", "iot_class": "cloud_polling", "loggers": ["tibber"], "requirements": ["pyTibber==0.35.0"] diff --git a/homeassistant/components/tilt_ble/manifest.json b/homeassistant/components/tilt_ble/manifest.json index f43e480a8f8b3..1036ccda773b7 100644 --- a/homeassistant/components/tilt_ble/manifest.json +++ b/homeassistant/components/tilt_ble/manifest.json @@ -11,6 +11,7 @@ "config_flow": true, "dependencies": ["bluetooth_adapters"], "documentation": "https://www.home-assistant.io/integrations/tilt_ble", + "integration_type": "device", "iot_class": "local_push", "requirements": ["tilt-ble==1.0.1"] } diff --git a/homeassistant/components/todoist/manifest.json b/homeassistant/components/todoist/manifest.json index 67526a85b65b1..2c67ea079e7fb 100644 --- a/homeassistant/components/todoist/manifest.json +++ b/homeassistant/components/todoist/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@boralyl"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/todoist", + "integration_type": "service", "iot_class": "cloud_polling", "loggers": ["todoist"], "requirements": ["todoist-api-python==3.1.0"] diff --git a/homeassistant/components/togrill/manifest.json b/homeassistant/components/togrill/manifest.json index 429ffeab9ce04..9897c9921d39d 100644 --- a/homeassistant/components/togrill/manifest.json +++ b/homeassistant/components/togrill/manifest.json @@ -12,6 +12,7 @@ "config_flow": true, "dependencies": ["bluetooth"], "documentation": "https://www.home-assistant.io/integrations/togrill", + "integration_type": "device", "iot_class": "local_push", "loggers": ["togrill_bluetooth"], "quality_scale": "bronze", diff --git a/homeassistant/components/tolo/manifest.json b/homeassistant/components/tolo/manifest.json index 613fc810683cf..85ca366615615 100644 --- a/homeassistant/components/tolo/manifest.json +++ b/homeassistant/components/tolo/manifest.json @@ -9,6 +9,7 @@ } ], "documentation": "https://www.home-assistant.io/integrations/tolo", + "integration_type": "device", "iot_class": "local_polling", "loggers": ["tololib"], "requirements": ["tololib==1.2.2"] diff --git a/homeassistant/components/toon/manifest.json b/homeassistant/components/toon/manifest.json index 5e5af3940749d..17755a6e0b62c 100644 --- a/homeassistant/components/toon/manifest.json +++ b/homeassistant/components/toon/manifest.json @@ -12,6 +12,7 @@ } ], "documentation": "https://www.home-assistant.io/integrations/toon", + "integration_type": "device", "iot_class": "cloud_push", "loggers": ["toonapi"], "requirements": ["toonapi==0.3.0"] diff --git a/homeassistant/components/totalconnect/manifest.json b/homeassistant/components/totalconnect/manifest.json index db9a53ac15490..699bb8a7d762e 100644 --- a/homeassistant/components/totalconnect/manifest.json +++ b/homeassistant/components/totalconnect/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@austinmroczek"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/totalconnect", + "integration_type": "hub", "iot_class": "cloud_polling", "loggers": ["total_connect_client"], "requirements": ["total-connect-client==2025.12.2"] diff --git a/homeassistant/components/tradfri/manifest.json b/homeassistant/components/tradfri/manifest.json index c411c52146bd5..e0488e0be390c 100644 --- a/homeassistant/components/tradfri/manifest.json +++ b/homeassistant/components/tradfri/manifest.json @@ -7,6 +7,7 @@ "homekit": { "models": ["TRADFRI"] }, + "integration_type": "hub", "iot_class": "local_polling", "loggers": ["pytradfri"], "requirements": ["pytradfri[async]==9.0.1"] diff --git a/homeassistant/components/trafikverket_camera/manifest.json b/homeassistant/components/trafikverket_camera/manifest.json index 08d945e0a0c73..641654de20a0a 100644 --- a/homeassistant/components/trafikverket_camera/manifest.json +++ b/homeassistant/components/trafikverket_camera/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@gjohansson-ST"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/trafikverket_camera", + "integration_type": "service", "iot_class": "cloud_polling", "loggers": ["pytrafikverket"], "requirements": ["pytrafikverket==1.1.1"] diff --git a/homeassistant/components/trafikverket_ferry/manifest.json b/homeassistant/components/trafikverket_ferry/manifest.json index 4177587db7e11..a1c55f9697840 100644 --- a/homeassistant/components/trafikverket_ferry/manifest.json +++ b/homeassistant/components/trafikverket_ferry/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@gjohansson-ST"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/trafikverket_ferry", + "integration_type": "service", "iot_class": "cloud_polling", "loggers": ["pytrafikverket"], "requirements": ["pytrafikverket==1.1.1"] diff --git a/homeassistant/components/trafikverket_train/manifest.json b/homeassistant/components/trafikverket_train/manifest.json index 40f3a39a2bb37..a97fd5b8cb852 100644 --- a/homeassistant/components/trafikverket_train/manifest.json +++ b/homeassistant/components/trafikverket_train/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@gjohansson-ST"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/trafikverket_train", + "integration_type": "service", "iot_class": "cloud_polling", "loggers": ["pytrafikverket"], "requirements": ["pytrafikverket==1.1.1"] diff --git a/homeassistant/components/trafikverket_weatherstation/manifest.json b/homeassistant/components/trafikverket_weatherstation/manifest.json index 3996379540f26..c65bef540d41e 100644 --- a/homeassistant/components/trafikverket_weatherstation/manifest.json +++ b/homeassistant/components/trafikverket_weatherstation/manifest.json @@ -4,6 +4,7 @@ "codeowners": ["@gjohansson-ST"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/trafikverket_weatherstation", + "integration_type": "service", "iot_class": "cloud_polling", "loggers": ["pytrafikverket"], "requirements": ["pytrafikverket==1.1.1"] diff --git a/homeassistant/generated/integrations.json b/homeassistant/generated/integrations.json index fcb0e77cba7fc..6e13eebeeda3d 100644 --- a/homeassistant/generated/integrations.json +++ b/homeassistant/generated/integrations.json @@ -5948,7 +5948,7 @@ "name": "Samsung Smart TV" }, "syncthru": { - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_polling", "name": "Samsung SyncThru Printer" @@ -6595,7 +6595,7 @@ }, "steamist": { "name": "Steamist", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_polling" }, @@ -6729,7 +6729,7 @@ }, "syncthing": { "name": "Syncthing", - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "local_polling" }, @@ -6801,7 +6801,7 @@ }, "tami4": { "name": "Tami4 Edge / Edge+", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "cloud_polling" }, @@ -6869,7 +6869,7 @@ "name": "Telegram" }, "telegram_bot": { - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "cloud_push", "name": "Telegram bot" @@ -6921,7 +6921,7 @@ "name": "Tesla Powerwall" }, "tesla_wall_connector": { - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_polling", "name": "Tesla Wall Connector" @@ -6959,7 +6959,7 @@ }, "thermobeacon": { "name": "ThermoBeacon", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_push" }, @@ -6970,7 +6970,7 @@ }, "thermopro": { "name": "ThermoPro", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_push" }, @@ -7040,7 +7040,7 @@ "name": "Tilt", "integrations": { "tilt_ble": { - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_push", "name": "Tilt Hydrometer BLE" @@ -7066,19 +7066,19 @@ }, "todoist": { "name": "Todoist", - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "cloud_polling" }, "togrill": { "name": "ToGrill", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_push" }, "tolo": { "name": "TOLO Sauna", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "local_polling" }, @@ -7096,7 +7096,7 @@ }, "toon": { "name": "Toon", - "integration_type": "hub", + "integration_type": "device", "config_flow": true, "iot_class": "cloud_push" }, @@ -7171,25 +7171,25 @@ "name": "Trafikverket", "integrations": { "trafikverket_camera": { - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "cloud_polling", "name": "Trafikverket Camera" }, "trafikverket_ferry": { - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "cloud_polling", "name": "Trafikverket Ferry" }, "trafikverket_train": { - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "cloud_polling", "name": "Trafikverket Train" }, "trafikverket_weatherstation": { - "integration_type": "hub", + "integration_type": "service", "config_flow": true, "iot_class": "cloud_polling", "name": "Trafikverket Weather Station" diff --git a/requirements_all.txt b/requirements_all.txt index e8538fc6bc8c6..43c4e2e205fc9 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2364,7 +2364,7 @@ pyplaato==0.0.19 pypoint==3.0.0 # homeassistant.components.portainer -pyportainer==1.0.23 +pyportainer==1.0.27 # homeassistant.components.probe_plus pyprobeplus==1.1.2 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 869c9139363bc..e09b56cdb585a 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -2014,7 +2014,7 @@ pyplaato==0.0.19 pypoint==3.0.0 # homeassistant.components.portainer -pyportainer==1.0.23 +pyportainer==1.0.27 # homeassistant.components.probe_plus pyprobeplus==1.1.2 diff --git a/script/hassfest/requirements.py b/script/hassfest/requirements.py index b3ca309278395..034fe122fc717 100644 --- a/script/hassfest/requirements.py +++ b/script/hassfest/requirements.py @@ -203,11 +203,6 @@ "sense": {"sense-energy": {"async-timeout"}}, "slimproto": {"aioslimproto": {"async-timeout"}}, "surepetcare": {"surepy": {"async-timeout"}}, - "tami4": { - # https://github.com/SeleniumHQ/selenium/issues/16943 - # tami4 > selenium > types* - "selenium": {"types-certifi", "types-urllib3"}, - }, "travisci": { # https://github.com/menegazzo/travispy seems to be unmaintained # and unused https://www.home-assistant.io/integrations/travisci