scipy / weave

Weave - tools for including C/C++ code within Python code.
https://pypi.org/project/scipy-weave/
Other
55 stars 27 forks source link

No module named 'parser' #20

Open behdadebsh opened 1 year ago

behdadebsh commented 1 year ago

When importing "inline" from weave (installed on Python 3.10), It returns the error: No module named 'parser' which is imported in blitz_tools.py The only occasion it is being used is with parser.suite(expr). Package dateutil has parser inside of it but that does not come with something called "suite" I wonder if it is a Python version issue or something else?

rgommers commented 1 year ago

That's indeed a Python issue. You shouldn't be able to install on 3.10 even, the python_requires says <3.10: https://github.com/scipy/weave/blob/main/setup.py#L182