Skip to content

Commit

Permalink
Update xknx to 2.5.0 (home-assistant#88069)
Browse files Browse the repository at this point in the history
  • Loading branch information
farmio authored Feb 14, 2023
1 parent 7d7ee1c commit d7861e7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/knx/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_push",
"loggers": ["xknx"],
"quality_scale": "platinum",
"requirements": ["xknx==2.4.0"]
"requirements": ["xknx==2.5.0"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions tests/components/knx/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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
Expand Down Expand Up @@ -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,
),
Expand Down Expand Up @@ -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,
),
Expand Down

0 comments on commit d7861e7

Please sign in to comment.