Poetry develop?
#3784
Replies: 1 comment 3 replies
-
Hello, since poetry 1.1 path dependencies are not installed in editable mode by default anymore (see docs). You have to specify it explicit in the
Don't forget to run fin swimmer |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two directories using poetry to manage virtual environments, dependencies etc:
In dirB, I can add dirA as a dependency by
poetry add ../dirA
. If I import the package and print out the version it works:From perusing this discussion and the docs, I assumed that dirA/mypackage would be editable, i.e. if I bump the version number in dirA/mypackage/version.py to 0.2, then in dirB this should reflect the change.
However, it doesn't.
What can I do if I would like to do this? Something akin to python setup.py develop in poetry speak?
Thanks for your help!
Beta Was this translation helpful? Give feedback.
All reactions