Skip to content

Neurite is incompatible with python 3.11 #76

@vasl12

Description

@vasl12

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions