Bump python-songpal dependency to 0.14 (#66769)

* Bump python-songpal dependency to 0.14

* Fix tests

* pip_check -1

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Teemu R 2022-02-18 10:31:46 +01:00 committed by GitHub
parent 2b807bd07d
commit 483545eeaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 4 deletions

View File

@ -3,7 +3,7 @@
"name": "Sony Songpal",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/songpal",
"requirements": ["python-songpal==0.12"],
"requirements": ["python-songpal==0.14"],
"codeowners": ["@rytilahti", "@shenxn"],
"ssdp": [
{

View File

@ -1972,7 +1972,7 @@ python-smarttub==0.0.29
python-sochain-api==0.0.2
# homeassistant.components.songpal
python-songpal==0.12
python-songpal==0.14
# homeassistant.components.tado
python-tado==0.12.0

View File

@ -1227,7 +1227,7 @@ python-picnic-api==1.1.0
python-smarttub==0.0.29
# homeassistant.components.songpal
python-songpal==0.12
python-songpal==0.14
# homeassistant.components.tado
python-tado==0.12.0

View File

@ -3,7 +3,7 @@ PIP_CACHE=$1
# Number of existing dependency conflicts
# Update if a PR resolve one!
DEPENDENCY_CONFLICTS=10
DEPENDENCY_CONFLICTS=9
PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE)
LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)

View File

@ -44,6 +44,9 @@ def _create_mocked_device(throw_exception=False, wired_mac=MAC, wireless_mac=Non
bssid=None,
ssid=None,
bleID=None,
serialNumber=None,
generation=None,
model=None,
version=SW_VERSION,
)
type(mocked_device).get_system_info = AsyncMock(return_value=sys_info)