Edited to put code in a single frame.
So got a new issue. I am getting a failed setup after upgrading to the latest update.
The issues is on start that I get a no module named bellows.ezsp.v4
Has anyone had this issues and if so how did you fix it?
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/loader.py", line 886, in async_get_component
comp = await self.hass.async_add_import_executor_job(self.get_component)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/concurrent/futures/thread.py", line 58, in run
result = self.fn(*self.args, **self.kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/loader.py", line 921, in get_component
ComponentProtocol, importlib.import_module(self.pkg_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/importlib/__init__.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 995, in exec_module
File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
File "/usr/src/homeassistant/homeassistant/components/zha/__init__.py", line 22, in <module>
from . import repairs, websocket_api
File "/usr/src/homeassistant/homeassistant/components/zha/repairs/__init__.py", line 10, in <module>
from ..core.const import DOMAIN
File "/usr/src/homeassistant/homeassistant/components/zha/core/__init__.py", line 3, in <module>
from .device import ZHADevice
File "/usr/src/homeassistant/homeassistant/components/zha/core/device.py", line 37, in <module>
from . import const, discovery
File "/usr/src/homeassistant/homeassistant/components/zha/core/const.py", line 7, in <module>
import bellows.zigbee.application
File "/usr/local/lib/python3.12/site-packages/bellows/zigbee/application.py", line 34, in <module>
import bellows.ezsp
File "/usr/local/lib/python3.12/site-packages/bellows/ezsp/__init__.py", line 26, in <module>
from bellows.ezsp.config import DEFAULT_CONFIG, RuntimeConfig, ValueConfig
File "/usr/local/lib/python3.12/site-packages/bellows/ezsp/config.py", line 6, in <module>
import bellows.ezsp.v4.types as types_v4
ModuleNotFoundError: No module named 'bellows.ezsp.v4'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/setup.py", line 296, in _async_setup_component
component = await integration.async_get_component()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/loader.py", line 892, in async_get_component
comp = self.get_component()
^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/loader.py", line 921, in get_component
ComponentProtocol, importlib.import_module(self.pkg_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/importlib/__init__.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 995, in exec_module
File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
File "/usr/src/homeassistant/homeassistant/components/zha/__init__.py", line 22, in <module>
from . import repairs, websocket_api
File "/usr/src/homeassistant/homeassistant/components/zha/repairs/__init__.py", line 10, in <module>
from ..core.const import DOMAIN
File "/usr/src/homeassistant/homeassistant/components/zha/core/__init__.py", line 3, in <module>
from .device import ZHADevice
File "/usr/src/homeassistant/homeassistant/components/zha/core/device.py", line 37, in <module>
from . import const, discovery
File "/usr/src/homeassistant/homeassistant/components/zha/core/const.py", line 7, in <module>
import bellows.zigbee.application
File "/usr/local/lib/python3.12/site-packages/bellows/zigbee/application.py", line 34, in <module>
import bellows.ezsp
File "/usr/local/lib/python3.12/site-packages/bellows/ezsp/__init__.py", line 26, in <module>
from bellows.ezsp.config import DEFAULT_CONFIG, RuntimeConfig, ValueConfig
File "/usr/local/lib/python3.12/site-packages/bellows/ezsp/config.py", line 6, in <module>
import bellows.ezsp.v4.types as types_v4
ModuleNotFoundError: No module named 'bellows.ezsp.v4`
type or paste code here
```