ipython / ipyparallel

IPython Parallel: Interactive Parallel Computing in Python

Home Page:https://ipyparallel.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bug: flit_core >= 3.4.0 required

jhgoebbert opened this issue · comments

ipyparallel needs the requirement flit_core>=3.4.0 as minimum.
build_editable is used in buildapi.py#L10 which was introduced with flit_core==3.4.0 in pypa/flit@2a87858

It flit_core<3.4.0 is installed one gets the error:
ImportError: cannot import name 'build_editable' from 'flit_core.buildapi' (/lib/python3.9/site-packages/flit_core/buildapi.py)

You might want to fix this in pyproject.toml#L4

Thanks, fixed by #714