You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the issues of this repo and believe that this is not a duplicate.
I have searched the FAQ and general documentation and believe that my question is not already covered.
Feature Request
It would be nice to have the option to install dependencies strictly from poetry.lock when using pip install (via PEP517 and the poetry-core mechanic).
I have thought about it and in my opinion adding support for a PEP517 option would allow Poetry to handle this feature without breaking anything else. I guess the dependencies defined in pyproject.toml would need to be overwritten with the exact versions for each dependencies and sub-dependencies located in the poetry.lock when generating the wheel/sdist (see poetry-lock-package).
It could look something like that : pip install . --package-config use-lock=true
The text was updated successfully, but these errors were encountered:
Feature Request
It would be nice to have the option to install dependencies strictly from
poetry.lock
when usingpip install
(via PEP517 and thepoetry-core
mechanic).I have thought about it and in my opinion adding support for a PEP517 option would allow Poetry to handle this feature without breaking anything else. I guess the dependencies defined in
pyproject.toml
would need to be overwritten with the exact versions for each dependencies and sub-dependencies located in thepoetry.lock
when generating the wheel/sdist (see poetry-lock-package).It could look something like that :
pip install . --package-config use-lock=true
The text was updated successfully, but these errors were encountered: