-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ecodes misses UInput Constants #238
Comments
latter part is dupe of #236 |
It's probably due to using an ancient kernel to build the wheels |
Botch complete: try:
# .ecodes misses UInput stuff, grab from runtime if it exists
import evdev.ecodes_runtime as ecodes_runtime
return cast(int, getattr(ecodes_runtime, b))
except Exception:
pass
return cast(int, getattr(evdev.ecodes, b)) |
Hi, sorry, what do you mean with
and
? |
I made a fix for my package. But currently evdev.ecodes is missing uinput attrs on arch, fedora, and the wheel |
Squiggles on VS code are due to the same issue as that one |
I did not test master. Hopefully it does (seems that it will). However, the issue is cosmetic and I can live with it for now. The uinput issue caused a breakage and i had to push an emergency update |
Ah ok. I can confirm that UI_FF_UPLOAD is missing on my machine:
And it seems commit 61beda7 broke it. Works on 3ff9816:
Breaks after checking out to 61beda7:
|
Fixed in a98b68f. I'll make a release this weekend. |
Release 1.9.1 is out. It should land in Fedora 41 stable in one week (bodhi link). |
My software now has errors such as the following:
IE uinput constants are missing
python-evdev 1.9 got pushed to fedora and arch so I am currently rushing for a mitigation
I also get squiglies everywhere in VS Code now:
So, what am I to do with this?
The text was updated successfully, but these errors were encountered: