Skip to content

Commit

Permalink
Bump python-linkplay to v0.1.1 (#132091)
Browse files Browse the repository at this point in the history
  • Loading branch information
silamon authored Dec 11, 2024
1 parent beda273 commit b26583b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/linkplay/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"integration_type": "hub",
"iot_class": "local_polling",
"loggers": ["linkplay"],
"requirements": ["python-linkplay==0.0.20"],
"requirements": ["python-linkplay==0.1.1"],
"zeroconf": ["_linkplay._tcp.local."]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2368,7 +2368,7 @@ python-juicenet==1.1.0
python-kasa[speedups]==0.8.1

# homeassistant.components.linkplay
python-linkplay==0.0.20
python-linkplay==0.1.1

# homeassistant.components.lirc
# python-lirc==1.2.3
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1898,7 +1898,7 @@ python-juicenet==1.1.0
python-kasa[speedups]==0.8.1

# homeassistant.components.linkplay
python-linkplay==0.0.20
python-linkplay==0.1.1

# homeassistant.components.matter
python-matter-server==6.6.0
Expand Down
6 changes: 4 additions & 2 deletions tests/components/linkplay/test_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ async def test_diagnostics(
patch.object(LinkPlayMultiroom, "update_status", return_value=None),
):
endpoints = [
LinkPlayApiEndpoint(protocol="https", endpoint=HOST, session=None),
LinkPlayApiEndpoint(protocol="http", endpoint=HOST, session=None),
LinkPlayApiEndpoint(
protocol="https", port=443, endpoint=HOST, session=None
),
LinkPlayApiEndpoint(protocol="http", port=80, endpoint=HOST, session=None),
]
for endpoint in endpoints:
mock_session.get(
Expand Down

0 comments on commit b26583b

Please sign in to comment.