-
Notifications
You must be signed in to change notification settings - Fork 214
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
incompatible with python 3.11 #262
Comments
Until this is fixed in master, you can try this workaround (if you're calling
The error hander isn't used on the "happy path" so doesn't matter much what exactly you put into |
Hotfix with the additional version of python for your mac:
|
At least on my machine, changing getargspec to getfullargspec in init.py got ntfy working again on python 3.11.2. |
@zakariassen do you know if |
AFAIK, It is present in all versions of Python 3, from v3.0 forwards. https://docs.python.org/3.0/library/inspect.html#inspect.getfullargspec Just dumb luck on my account, testing if it would function as a drop-in replacement :) |
simple fix on ubutnu 23.10 with python 3.11 |
Obtained from here: dschep/ntfy#262 PR: 275494 Approved by: portmgr (blanket approval)
getargspec
was removed from theinspect
module AFAICT. First reported in #190The text was updated successfully, but these errors were encountered: