Skip to content
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

Neurite is incompatible with python 3.11 #76

Open
vasl12 opened this issue Nov 15, 2023 · 0 comments
Open

Neurite is incompatible with python 3.11 #76

vasl12 opened this issue Nov 15, 2023 · 0 comments

Comments

@vasl12
Copy link

vasl12 commented Nov 15, 2023

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant