Skip to content

Commit

Permalink
Bump ZHA dependencies (#85355)
Browse files Browse the repository at this point in the history
* Bump ZHA dependencies

* Deprecated `foundation.Command` -> `foundation.GeneralCommand`
  • Loading branch information
puddly authored and balloob committed Jan 9, 2023
1 parent 00e563f commit b30d4ef
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/zha/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/zha",
"requirements": [
"bellows==0.34.5",
"bellows==0.34.6",
"pyserial==3.5",
"pyserial-asyncio==0.6",
"zha-quirks==0.0.90",
"zigpy-deconz==0.19.2",
"zigpy==0.52.3",
"zigpy==0.53.0",
"zigpy-xbee==0.16.2",
"zigpy-zigate==0.10.3",
"zigpy-znp==0.9.2"
Expand Down
4 changes: 2 additions & 2 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ beautifulsoup4==4.11.1
# beewi_smartclim==0.0.10

# homeassistant.components.zha
bellows==0.34.5
bellows==0.34.6

# homeassistant.components.bmw_connected_drive
bimmer_connected==0.12.0
Expand Down Expand Up @@ -2668,7 +2668,7 @@ zigpy-zigate==0.10.3
zigpy-znp==0.9.2

# homeassistant.components.zha
zigpy==0.52.3
zigpy==0.53.0

# homeassistant.components.zoneminder
zm-py==0.5.2
Expand Down
4 changes: 2 additions & 2 deletions requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ base36==0.1.1
beautifulsoup4==4.11.1

# homeassistant.components.zha
bellows==0.34.5
bellows==0.34.6

# homeassistant.components.bmw_connected_drive
bimmer_connected==0.12.0
Expand Down Expand Up @@ -1869,7 +1869,7 @@ zigpy-zigate==0.10.3
zigpy-znp==0.9.2

# homeassistant.components.zha
zigpy==0.52.3
zigpy==0.53.0

# homeassistant.components.zwave_js
zwave-js-server-python==0.44.0
Expand Down
2 changes: 1 addition & 1 deletion tests/components/zha/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def update_attribute_cache(cluster):
attrid = zigpy.types.uint16_t(attrid)
attrs.append(make_attribute(attrid, value))

hdr = make_zcl_header(zcl_f.Command.Report_Attributes)
hdr = make_zcl_header(zcl_f.GeneralCommand.Report_Attributes)
hdr.frame_control.disable_default_response = True
msg = zcl_f.GENERAL_COMMANDS[zcl_f.GeneralCommand.Report_Attributes].schema(
attribute_reports=attrs
Expand Down

0 comments on commit b30d4ef

Please sign in to comment.