Issue
Local editable packages are not exported correctly by poetry. Thus, pip install -r requirements.txt fails with error:
ERROR: Invalid requirement: 'example-pkg @ /Users/pawelvewd/projects/test_poetry/example_pkg' (from line 3 of requirements.txt)
Hint: It looks like a path. File 'example-pkg @ /Users/pawelvewd/projects/test_poetry/example_pkg' does not exist.
Expected result
-e ./example_pkg["foo"] ; python_version >= "3.9"
Current result
example-pkg @ /Users/pawelvewd/projects/test_poetry/example_pkg; python_version >= "3.9"
- the path should be relative IMO
- Poetry does not export
extras
- Poetry does not export
develop = true (editable mode)
-vvvoption).https://gist.github.com/pawelrubin/19731324b4ed3b1f3d50c6634befc016
https://gist.github.com/pawelrubin/563bba1d591959c674c8aca81d3918ad
Issue
Local editable packages are not exported correctly by poetry. Thus,
pip install -r requirements.txtfails with error:Expected result
Current result
extrasdevelop = true(editable mode)