[14:06:47] <Siecje> If I do pip wheel it fails and says it can't find an items listed in install_requires. It is installed with pip install -e. If I do python setup.py bdist_wheel then it is able to create the wheel.
[14:19:03] <Siecje> pip wheel fails when python setup.py bdist_wheel works. It fails because it says it can't find a package that was installed with pip install -e.
[15:24:29] <Siecje> Okay it seems pip wheel tries to create a .whl for the package and all dependencies. Adding --no-deps works. It is strange because the docs say that pip wheel just runs python setup.py bdist_wheel. https://pip.pypa.io/en/stable/reference/pip_wheel/
[15:50:10] <mgedmin> afaiu pip wheel runs python setup.py bdist_wheel _for each package, including dependencies, recursively_
[16:06:28] <ronny> Siecje: the first line of the drscription says requirements and dependencies
[16:09:36] <Siecje> ronny: Yup, I didn't see that. Thanks.