-
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
Does poetry build support dynamic dependencies? #8509
Comments
no |
any plans to add support any time soon? How does one build a package in poetry with pinned versions? |
The strong theme of poetry is use and supply static metadata, there's next to no chance of adding anything dynamic, for that, use a different back end. If you want to pin package versions, pin them as dependencies e.g. poetry add foobarbaz=1.2.3.4 will pin dependency foobarbaz at version 1.2.3.4. |
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. |
I'm trying to use dynamic metadata suggested here to include a pinned requirements.txt for my deployable application (i.e. not a library):
However the generated package with
poetry build
doesn't use/include it. Is this supported by poetry?The text was updated successfully, but these errors were encountered: