Update xknx to 2.5.0 (#88069)

This commit is contained in:
Matthias Alphart 2023-02-14 12:44:43 +01:00 committed by GitHub
parent 7d7ee1cead
commit d7861e79c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -8,5 +8,5 @@
"iot_class": "local_push",
"loggers": ["xknx"],
"quality_scale": "platinum",
"requirements": ["xknx==2.4.0"]
"requirements": ["xknx==2.5.0"]
}

View File

@ -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

View File

@ -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

View File

@ -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,
),