-
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
Poetry does not respect the develop = false
option when installing from git/http
#1080
Comments
develop = false
option when installing from git/httpdevelop = false
option when installing from git/http
@a-musing-moose this should work with
|
This is still an issue with Poetry 0.12.17. The cause is this line in pip_installer.py: In my opinion it would make a lot more sense if this was changed to |
@danmou I have proposed a fix that will, for now, respect the |
* fixes python-poetry#1080, again
* fixes python-poetry#1080, again
* fixes python-poetry#1080, again
Not sure why this is closed. The issue is still there in the current poetry 1.0.5. |
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
Related to but different from: #1073
We have a private library we install from Github, this library was written with the aid of Poetry and as such has no
setup.py
.Installation fails when pip 19.1 is installed due to Poetry attempting to install it in editable mode.
In this instance editable mode is not desired or needed. I noted that for directory based installed you can specify
develop = false
to have poetry install in a non-editable mode. But this does not appear to be an option when installing from git/http.The text was updated successfully, but these errors were encountered: