Support for Homeassistant 2022.7.0
See original GitHub issueIt looks like with bump of python to 3.10 it’s not possible to build required lib plugp100
Setup failed for custom integration tapo: Requirements for tapo not found: ['plugp100==2.1.14'].
Issue Analytics
- State:
- Created a year ago
- Reactions:27
- Comments:85 (20 by maintainers)
Top Results From Across the Web
2022.7: A stunning performance - Home Assistant
Improved stability and performance, and Python 3.10 · Update Z-Wave devices directly from Home Assistant · The about page is now beautiful too!...
Read more >2022.12: It does matter! - Home Assistant
This release adds support for using Shelly devices as a remote Bluetooth adapter as well! It works with all second-generation Shelly devices ...
Read more >Full Changelog for Home Assistant Core 2022.7
These are all the changes included in the Home Assistant Core 2202.7 release. For a summary in a more readable format: Release notes...
Read more >2022.9: Home Assistant Birthday Release!
This release, it's on fire Not only do we now support multiple Bluetooth adapters, we also support ESPHome devices acting as Bluetooth ...
Read more >2022.7: A stunning performance - Home Assistant Community
After update to version 2022.7.0 i have a problem with not showing sensor rain and gas sensor from my SATEL Alarm by ETHM-1...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
A new version is release
1.2.13
, please try it 🎉🎉🎉Hi guys, thanks for comments, I’m working in order to fix the issue related to python 3.10. Now I try to explain whats happening. When you install a python package, pip search for
wheels package
which are a ready to run package. Packages likepycryptdome
which use native C api, usually provides awheels package
for each python version (e.g. 3.10, 3.9, 3.8) cause a part of code is compiled (the C part is compiled and depends on python version).plugp100
use some libraries which use native C api. So I need to find a way to provide these packages on python3.10.Generally, when the maintainer doesn’t provide proper wheels package,
pip
perform an install phase by compiling using C compiler. For example in this issue https://github.com/petretiandrea/home-assistant-tapo-p100/issues/197#issuecomment-1177370409pip
fail cause there is no gcc compiler. So try to follow my comment until I release a next version of plugp100.