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>
This commit is contained in:
parent
3e3936e783
commit
684845fd8c
6 changed files with 9 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
|||
"name": "Matter (BETA)",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/matter",
|
||||
"requirements": ["python-matter-server==2.0.2"],
|
||||
"requirements": ["python-matter-server==2.1.0"],
|
||||
"dependencies": ["websocket_api"],
|
||||
"codeowners": ["@home-assistant/matter"],
|
||||
"iot_class": "local_push"
|
||||
|
|
|
@ -2072,7 +2072,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
|
||||
|
|
|
@ -1468,7 +1468,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…
Add table
Reference in a new issue