pauln / tailwind-home-assistant

Tailwind iQ3 integration for Home Assistant
Apache License 2.0
25 stars 3 forks source link

Update to 2023.2 breaks tailwind iq3 startup #13

Closed dmorris1961 closed 1 year ago

dmorris1961 commented 1 year ago

I get this message once I updated HA to 2023.2.

**Logger: homeassistant.setup Source: setup.py:205 First occurred: 4:42:50 PM (1 occurrences) Last logged: 4:42:50 PM

Setup failed for custom integration tailwind_iq3: Requirements for tailwind_iq3 not found: ['scapy==2.4.5'].**

Was working fine just before the update.

Atreus-X commented 1 year ago

change ['scapy==2.4.5'] to ['scapy==2.5.0'] in line 8 of manifest.json

That got it back working for me.

::EDIT:: removed bad info about cover.py.

Future readers issue resolved in v0.4.0

sellison2 commented 1 year ago

Confirmed the above fix worked.

twojciac commented 1 year ago

Modifying the manifest.json fixed the issue for me. Not sure why you'd want to remove the f strings from cover.py, that would remove the ability to get details of an error.

dmorris1961 commented 1 year ago

Working with the modification to manifest.json.

Thank you.