You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For (2), perhaps try removing -e . (or pip install -e ., or whatever mechanism) for the pip-mediated editable install, and instead running python setup.py develop to achieve an editable install via setuptools.
This has worked fine so far for both of my PEP517 projects.
pip 19.1 prevents pytest to use editable mode (pypa/pip#6370) due to our
pyproject.toml
file.This is a problem for us for two reasons:
tox.ini
usesusedevelop
in arelease
anddocs
environments. I think we can get away from using it indocs
, not so sure about release.We use editable mode ourselves.
I will open a PR shortly trying to address 1, but for 2 I don't know of any workaround other than downgrading pip manually.
cc @RonnyPfannschmidt
The text was updated successfully, but these errors were encountered: