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
I have searched the issues of this repo and believe that this is not a duplicate.
I have searched the documentation and believe that my question is not covered.
Issue
If there are path dependencies and an entry point present as poetry plugin, the entry point is unable to be loaded.
poetry new aa
poetry new bb
poetry new cc
cd cc
sed -i '/\python*/a aa = {path = "../aa"} \nbb = {path = "../bb"}' pyproject.toml
echo'[tool.poetry.plugins."service"]"cc" = "cc.service:CCService"'>> pyproject.toml
poetry install
The current workaround is to re-install the packages using pip by removing path dependencies from toml file, is there a clean solution to this? @finswimmer@abn
Issue
If there are path dependencies and an entry point present as poetry plugin, the entry point is unable to be loaded.
In python:
results in
pkg_resources.extern.packaging.requirements.InvalidRequirement: Invalid URL: ../aa
Please look into the issue.
The text was updated successfully, but these errors were encountered: