Bump python-matter-server to 2.1.0 (#88192)
* Bump python-matter-server to 2.1.0 * Fix tests --------- Co-authored-by: Paulus Schoutsen <balloob@gmail.com>pull/88195/head^2
parent
c8b827b46b
commit
dfe0ededa0
|
@ -6,5 +6,5 @@
|
|||
"dependencies": ["websocket_api"],
|
||||
"documentation": "https://www.home-assistant.io/integrations/matter",
|
||||
"iot_class": "local_push",
|
||||
"requirements": ["python-matter-server==2.0.2"]
|
||||
"requirements": ["python-matter-server==2.1.0"]
|
||||
}
|
||||
|
|
|
@ -2078,7 +2078,7 @@ python-kasa==0.5.0
|
|||
# python-lirc==1.2.3
|
||||
|
||||
# homeassistant.components.matter
|
||||
python-matter-server==2.0.2
|
||||
python-matter-server==2.1.0
|
||||
|
||||
# homeassistant.components.xiaomi_miio
|
||||
python-miio==0.5.12
|
||||
|
|
|
@ -1474,7 +1474,7 @@ python-juicenet==1.1.0
|
|||
python-kasa==0.5.0
|
||||
|
||||
# homeassistant.components.matter
|
||||
python-matter-server==2.0.2
|
||||
python-matter-server==2.1.0
|
||||
|
||||
# homeassistant.components.xiaomi_miio
|
||||
python-miio==0.5.12
|
||||
|
|
|
@ -5,6 +5,7 @@ import asyncio
|
|||
from collections.abc import AsyncGenerator, Generator
|
||||
from unittest.mock import AsyncMock, MagicMock, patch
|
||||
|
||||
from matter_server.common.const import SCHEMA_VERSION
|
||||
from matter_server.common.models.server_information import ServerInfo
|
||||
import pytest
|
||||
|
||||
|
@ -45,6 +46,7 @@ async def matter_client_fixture() -> AsyncGenerator[MagicMock, None]:
|
|||
sdk_version="2022.11.1",
|
||||
wifi_credentials_set=True,
|
||||
thread_credentials_set=True,
|
||||
min_supported_schema_version=SCHEMA_VERSION,
|
||||
)
|
||||
|
||||
yield client
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
"schema_version": 1,
|
||||
"sdk_version": "2022.12.0",
|
||||
"wifi_credentials_set": true,
|
||||
"thread_credentials_set": false
|
||||
"thread_credentials_set": false,
|
||||
"min_supported_schema_version": 1
|
||||
},
|
||||
"nodes": [
|
||||
{
|
||||
|
|
|
@ -6,7 +6,8 @@
|
|||
"schema_version": 1,
|
||||
"sdk_version": "2022.12.0",
|
||||
"wifi_credentials_set": true,
|
||||
"thread_credentials_set": false
|
||||
"thread_credentials_set": false,
|
||||
"min_supported_schema_version": 1
|
||||
},
|
||||
"nodes": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue