-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changing develop
option is not reflected
#3085
Comments
I came here to say the same thing. I expect that with That works fine on |
@ginty that is what happens. The dependency is not copied, but installed as an editable dependency. However, since we do not use the @tadeoos am I correct in assuming that your scenario is an existing virtual environment created using |
No. The venv is created by poetry v1.1.1
Ok, I'll deal with it that way for now. |
One question: Changing the default value for |
I am still seeing this issue on poetry 1.1.12. To be explicit:
Issues such as this and #3958 make it hard to feel confident that |
Yeah. I can confirm that it is really annoying. It's hard to develop anything when you have to |
Using 1.2.1 i was able to get an editable install working by updating to Of course, the issue description is still valid. |
Resolved in #6843. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
-vvv
option).Issue
TLDR; changing
develop
of a dependency field andpoetry update
don't have any effect.I have a project consists of two poetry project:
foo
depends onbar
as follows:(Full example here: https://github.com/tamuhey/poetry111_bug_mvce/blob/master/foo/pyproject.toml)
Since the editable mode is false by default from poetry v1.1,
bar
is copied into another directory. It's ok.But, after changing the dependency of
bar
to editable (develop = true
) as follows and runningpoetry update
don't change anything, as I expected thatbar
is changed to editable dependency.The text was updated successfully, but these errors were encountered: