mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Update xknx to 2.5.0 (#88069)
This commit is contained in:
parent
7d7ee1cead
commit
d7861e79c5
@ -8,5 +8,5 @@
|
||||
"iot_class": "local_push",
|
||||
"loggers": ["xknx"],
|
||||
"quality_scale": "platinum",
|
||||
"requirements": ["xknx==2.4.0"]
|
||||
"requirements": ["xknx==2.5.0"]
|
||||
}
|
||||
|
@ -2650,7 +2650,7 @@ xboxapi==2.0.1
|
||||
xiaomi-ble==0.16.3
|
||||
|
||||
# homeassistant.components.knx
|
||||
xknx==2.4.0
|
||||
xknx==2.5.0
|
||||
|
||||
# homeassistant.components.bluesound
|
||||
# homeassistant.components.fritz
|
||||
|
@ -1875,7 +1875,7 @@ xbox-webapi==2.0.11
|
||||
xiaomi-ble==0.16.3
|
||||
|
||||
# homeassistant.components.knx
|
||||
xknx==2.4.0
|
||||
xknx==2.5.0
|
||||
|
||||
# homeassistant.components.bluesound
|
||||
# homeassistant.components.fritz
|
||||
|
@ -5,7 +5,7 @@ import pytest
|
||||
from xknx.exceptions.exception import CommunicationError, InvalidSecureConfiguration
|
||||
from xknx.io import DEFAULT_MCAST_GRP, DEFAULT_MCAST_PORT
|
||||
from xknx.io.gateway_scanner import GatewayDescriptor
|
||||
from xknx.secure.keyring import _load_keyring
|
||||
from xknx.secure.keyring import sync_load_keyring
|
||||
from xknx.telegram import IndividualAddress
|
||||
|
||||
from homeassistant import config_entries
|
||||
@ -998,8 +998,8 @@ async def test_configure_secure_knxkeys(hass: HomeAssistant, knx_setup) -> None:
|
||||
assert not result["errors"]
|
||||
|
||||
with patch(
|
||||
"xknx.secure.keyring._load_keyring",
|
||||
return_value=_load_keyring(
|
||||
"xknx.secure.keyring.sync_load_keyring",
|
||||
return_value=sync_load_keyring(
|
||||
str(get_fixture_path("fixture.knxkeys", DOMAIN).absolute()),
|
||||
FIXTURE_KNXKEYS_PASSWORD,
|
||||
),
|
||||
@ -1252,8 +1252,8 @@ async def test_options_flow_secure_manual_to_keyfile(
|
||||
assert not result4["errors"]
|
||||
|
||||
with patch(
|
||||
"xknx.secure.keyring._load_keyring",
|
||||
return_value=_load_keyring(
|
||||
"xknx.secure.keyring.sync_load_keyring",
|
||||
return_value=sync_load_keyring(
|
||||
str(get_fixture_path("fixture.knxkeys", DOMAIN).absolute()),
|
||||
FIXTURE_KNXKEYS_PASSWORD,
|
||||
),
|
||||
|
Loading…
x
Reference in New Issue
Block a user