Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/knx/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/knx",
"requirements": [
"xknx==0.18.15"
"xknx==0.19.0"
],
"codeowners": [
"@Julius2342",
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2490,7 +2490,7 @@ xbox-webapi==2.0.11
xboxapi==2.0.1

# homeassistant.components.knx
xknx==0.18.15
xknx==0.19.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 @@ -1518,7 +1518,7 @@ wolf_smartset==0.1.11
xbox-webapi==2.0.11

# homeassistant.components.knx
xknx==0.18.15
xknx==0.19.0

# homeassistant.components.bluesound
# homeassistant.components.fritz
Expand Down
4 changes: 2 additions & 2 deletions tests/components/knx/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ def knx_ip_interface_mock():

def fish_xknx(*args, **kwargs):
"""Get the XKNX object from the constructor call."""
self.xknx = args[0]
self.xknx = kwargs["xknx"]
# disable rate limiter for tests (before StateUpdater starts)
self.xknx.rate_limit = 0
return DEFAULT

with patch(
"xknx.xknx.KNXIPInterface",
"xknx.xknx.knx_interface_factory",
return_value=knx_ip_interface_mock(),
side_effect=fish_xknx,
):
Expand Down