- Ubuntu:
- 1.1.1:
- Link of a Gist with the contents of your pyproject.toml file:
Issue
I understand that from 1.1.0 onwards a local development dependency must be defined with the develop=true switch, e.g.
[tool.poetry.dependencies]
my_dependency = { path = "../../my_dependency", develop = true }
With Poetry 1.0.10 this worked as I would expect, some kind of link is created such that whenever I updated a file in my_dependency it would be reflected in the parent app the next time it was invoked.
However with version 1.1.0 and 1.1.1 any updates made to the dependency are not reflected in the app and it seems to be stuck on the version that was around at install time.
-vvvoption).Issue
I understand that from
1.1.0onwards a local development dependency must be defined with thedevelop=trueswitch, e.g.With Poetry
1.0.10this worked as I would expect, some kind of link is created such that whenever I updated a file inmy_dependencyit would be reflected in the parent app the next time it was invoked.However with version
1.1.0and1.1.1any updates made to the dependency are not reflected in the app and it seems to be stuck on the version that was around at install time.