We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! I am trying to use neurite with python 3.11 and I noticed the following error:
attrs, varargs, varkw, defaults = inspect.getargspec(func)
which is cause by an incompatibility of inspect and python 3.11.
The issue can be resolved by changing the above line to:
attrs, varargs, varkw, defaults, _, _, _ = inspect.getfullargspec(func)
It would be nice to make neurite compatible with the newer python versions.
Thanks a lot!
The text was updated successfully, but these errors were encountered:
It would be nice to push this update to pypi :)
Sorry, something went wrong.
No branches or pull requests
Hi! I am trying to use neurite with python 3.11 and I noticed the following error:
attrs, varargs, varkw, defaults = inspect.getargspec(func)
which is cause by an incompatibility of inspect and python 3.11.
The issue can be resolved by changing the above line to:
attrs, varargs, varkw, defaults, _, _, _ = inspect.getfullargspec(func)
It would be nice to make neurite compatible with the newer python versions.
Thanks a lot!
The text was updated successfully, but these errors were encountered: