Bump pyheos to v1.0.2 (#138224)

Bump pyheos
This commit is contained in:
Andrew Sayre 2025-02-10 13:18:12 -06:00 committed by GitHub
parent c06ad5d799
commit 7aab1de72d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 11 additions and 3 deletions

View File

@ -8,7 +8,7 @@
"iot_class": "local_push", "iot_class": "local_push",
"loggers": ["pyheos"], "loggers": ["pyheos"],
"quality_scale": "silver", "quality_scale": "silver",
"requirements": ["pyheos==1.0.1"], "requirements": ["pyheos==1.0.2"],
"single_config_entry": true, "single_config_entry": true,
"ssdp": [ "ssdp": [
{ {

2
requirements_all.txt generated
View File

@ -1990,7 +1990,7 @@ pygti==0.9.4
pyhaversion==22.8.0 pyhaversion==22.8.0
# homeassistant.components.heos # homeassistant.components.heos
pyheos==1.0.1 pyheos==1.0.2
# homeassistant.components.hive # homeassistant.components.hive
pyhive-integration==1.0.1 pyhive-integration==1.0.1

View File

@ -1619,7 +1619,7 @@ pygti==0.9.4
pyhaversion==22.8.0 pyhaversion==22.8.0
# homeassistant.components.heos # homeassistant.components.heos
pyheos==1.0.1 pyheos==1.0.2
# homeassistant.components.hive # homeassistant.components.hive
pyhive-integration==1.0.1 pyhive-integration==1.0.1

View File

@ -110,6 +110,7 @@ def system_info_fixture() -> HeosSystem:
"1.0.0", "1.0.0",
"127.0.0.1", "127.0.0.1",
NetworkType.WIRED, NetworkType.WIRED,
True,
) )
return HeosSystem( return HeosSystem(
"user@user.com", "user@user.com",
@ -123,6 +124,7 @@ def system_info_fixture() -> HeosSystem:
"1.0.0", "1.0.0",
"127.0.0.2", "127.0.0.2",
NetworkType.WIFI, NetworkType.WIFI,
True,
), ),
], ],
) )
@ -140,6 +142,7 @@ def players_fixture() -> dict[int, HeosPlayer]:
model="HEOS Drive HS2" if i == 1 else "Speaker", model="HEOS Drive HS2" if i == 1 else "Speaker",
serial="123456", serial="123456",
version="1.0.0", version="1.0.0",
supported_version=True,
line_out=LineOutLevelType.VARIABLE, line_out=LineOutLevelType.VARIABLE,
is_muted=False, is_muted=False,
available=True, available=True,

View File

@ -107,6 +107,7 @@
'name': 'Test Player', 'name': 'Test Player',
'network': 'wired', 'network': 'wired',
'serial': '**REDACTED**', 'serial': '**REDACTED**',
'supported_version': True,
'version': '1.0.0', 'version': '1.0.0',
}), }),
'hosts': list([ 'hosts': list([
@ -116,6 +117,7 @@
'name': 'Test Player', 'name': 'Test Player',
'network': 'wired', 'network': 'wired',
'serial': '**REDACTED**', 'serial': '**REDACTED**',
'supported_version': True,
'version': '1.0.0', 'version': '1.0.0',
}), }),
dict({ dict({
@ -124,6 +126,7 @@
'name': 'Test Player 2', 'name': 'Test Player 2',
'network': 'wifi', 'network': 'wifi',
'serial': '**REDACTED**', 'serial': '**REDACTED**',
'supported_version': True,
'version': '1.0.0', 'version': '1.0.0',
}), }),
]), ]),
@ -135,6 +138,7 @@
'name': 'Test Player', 'name': 'Test Player',
'network': 'wired', 'network': 'wired',
'serial': '**REDACTED**', 'serial': '**REDACTED**',
'supported_version': True,
'version': '1.0.0', 'version': '1.0.0',
}), }),
]), ]),
@ -376,6 +380,7 @@
'serial': '**REDACTED**', 'serial': '**REDACTED**',
'shuffle': False, 'shuffle': False,
'state': 'stop', 'state': 'stop',
'supported_version': True,
'version': '1.0.0', 'version': '1.0.0',
'volume': 25, 'volume': 25,
}), }),