ya-mori / python-monorepo

monorepo sample using python and poetry
113 stars 11 forks source link

fixed `lib-one` package installation issue. #3

Closed joonhwan closed 3 years ago

joonhwan commented 3 years ago
joonhwan commented 3 years ago

Without "develop=true" as in pyproject.toml

[tool.poetry.dependencies]
python = "^3.7"
lib-one = {path = "../../libs/lib-one", develop=true}

, I got error of poetry complaining about '... ValueError: Directory ../logger does not exist .... " while installing "lib-one" package in project_one/project_tow .

I learned a lot from python-monorepo😃, but only this thing tackled me down. 😑

Hope this helps to other guys who try to learn monorepo using poetry.

ya-mori commented 3 years ago

@joonhwan

Thank you for fixing the glitch. However, this fix was not what I intended. So please check it out as I have fixed it. I will close this pull request.