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
When there is a local directory dir-x which contains a Python package (i.e. has setup.py), Prequ should be able to have a source line -e ./dir-x which will be relative in the compiled requirements.txt too.
Currently having -e ./dir-x in the source requirements will generate an entry as -e file:///absolute/path/to/dir-x, which is usually not very useful.
Supporting -e . is a noteworthy special case of this.
The text was updated successfully, but these errors were encountered:
When there is a local directory
dir-x
which contains a Python package (i.e. hassetup.py
), Prequ should be able to have a source line-e ./dir-x
which will be relative in the compiledrequirements.txt
too.Currently having
-e ./dir-x
in the source requirements will generate an entry as-e file:///absolute/path/to/dir-x
, which is usually not very useful.Supporting
-e .
is a noteworthy special case of this.The text was updated successfully, but these errors were encountered: