Bump python-linkplay to v0.1.1 (#132091)

This commit is contained in:
Simon Lamon 2024-12-11 11:12:05 +01:00 committed by Franck Nijhof
parent 238cf691a4
commit 4e5ceb3aa4
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
4 changed files with 7 additions and 5 deletions

View File

@ -7,6 +7,6 @@
"integration_type": "hub", "integration_type": "hub",
"iot_class": "local_polling", "iot_class": "local_polling",
"loggers": ["linkplay"], "loggers": ["linkplay"],
"requirements": ["python-linkplay==0.0.20"], "requirements": ["python-linkplay==0.1.1"],
"zeroconf": ["_linkplay._tcp.local."] "zeroconf": ["_linkplay._tcp.local."]
} }

View File

@ -2365,7 +2365,7 @@ python-juicenet==1.1.0
python-kasa[speedups]==0.8.1 python-kasa[speedups]==0.8.1
# homeassistant.components.linkplay # homeassistant.components.linkplay
python-linkplay==0.0.20 python-linkplay==0.1.1
# homeassistant.components.lirc # homeassistant.components.lirc
# python-lirc==1.2.3 # python-lirc==1.2.3

View File

@ -1892,7 +1892,7 @@ python-juicenet==1.1.0
python-kasa[speedups]==0.8.1 python-kasa[speedups]==0.8.1
# homeassistant.components.linkplay # homeassistant.components.linkplay
python-linkplay==0.0.20 python-linkplay==0.1.1
# homeassistant.components.matter # homeassistant.components.matter
python-matter-server==6.6.0 python-matter-server==6.6.0

View File

@ -31,8 +31,10 @@ async def test_diagnostics(
patch.object(LinkPlayMultiroom, "update_status", return_value=None), patch.object(LinkPlayMultiroom, "update_status", return_value=None),
): ):
endpoints = [ endpoints = [
LinkPlayApiEndpoint(protocol="https", endpoint=HOST, session=None), LinkPlayApiEndpoint(
LinkPlayApiEndpoint(protocol="http", endpoint=HOST, session=None), protocol="https", port=443, endpoint=HOST, session=None
),
LinkPlayApiEndpoint(protocol="http", port=80, endpoint=HOST, session=None),
] ]
for endpoint in endpoints: for endpoint in endpoints:
mock_session.get( mock_session.get(