Skip to content

Commit

Permalink
Upgrade of zigpy radio libs to a more recent version (#1655)
Browse files Browse the repository at this point in the history
* Update zigpy radio libs to bellows 0.36.8, zigpy 0.58.1, zigpy_znp 0.11.6, zigpy_deconz 0.21.1
  • Loading branch information
pipiche38 authored Oct 26, 2023
1 parent 35e1c96 commit 2365062
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
7 changes: 3 additions & 4 deletions Classes/ZigpyTransport/zigpyThread.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,9 @@ def post_coordinator_startup(self, radiomodule):

self.log.logging( "TransportZigpy", "Debug", "Active Endpoint List: %s" % str(self.app.get_device(nwk=t.NWK(0x0000)).endpoints.keys()), )
for epid, ep in self.app.get_device(nwk=t.NWK(0x0000)).endpoints.items():
if epid == 0:
continue
self.log.logging( "TransportZigpy", "Debug", "Simple Descriptor: %s" % ep)
self.forwarder_queue.put(build_plugin_8043_frame_list_node_descriptor(self, epid, ep))
if epid != 0 and ep.status == 0x00:
self.log.logging( "TransportZigpy", "Debug", "Simple Descriptor: %s" % ep)
self.forwarder_queue.put(build_plugin_8043_frame_list_node_descriptor(self, epid, ep))

self.log.logging( "TransportZigpy", "Debug", "Controller Model %s" % self.app.get_device(nwk=t.NWK(0x0000)).model )
self.log.logging( "TransportZigpy", "Debug", "Controller Manufacturer %s" % self.app.get_device(nwk=t.NWK(0x0000)).manufacturer )
Expand Down
8 changes: 4 additions & 4 deletions plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1502,10 +1502,10 @@ def update_DB_device_status_to_reinit( self ):
def check_python_modules_version( self ):

MODULES_VERSION = {
"zigpy": "0.56.1",
"zigpy_znp": "0.11.2",
"zigpy_deconz": "0.21.0",
"bellows": "0.35.8",
"zigpy": "0.58.1",
"zigpy_znp": "0.11.6",
"zigpy_deconz": "0.21.1",
"bellows": "0.36.8",
}

flag = True
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
bellows==0.35.8
zigpy==0.58.1
zigpy_deconz==0.21.1
zigpy-cli==1.0.4
zigpy_znp==0.11.6
bellows==0.36.8
dnspython==2.3.0
pyserial>=3.5
z4d-certified-devices
zigpy==0.56.1
zigpy_deconz==0.21.0
zigpy_znp==0.11.2
charset-normalizer==2.0.11
distro
zigpy-cli==1.0.4

0 comments on commit 2365062

Please sign in to comment.