-
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
install: add --no-binary option #5600
Conversation
Deploy preview for website ready! ✅ Preview Built with commit f8535fc. |
This change replaces the `--no-binary` option introduced in python-poetry#5600 as the original implementation could cause inconsistent results when the add, update or lock commands were used. This implementation makes use of a new configuration `installer.no-binary` to allow for user specification of sdist preference for select packages.
This change replaces the `--no-binary` option introduced in python-poetry#5600 as the original implementation could cause inconsistent results when the add, update or lock commands were used. This implementation makes use of a new configuration `installer.no-binary` to allow for user specification of sdist preference for select packages.
This change replaces the `--no-binary` option introduced in #5600 as the original implementation could cause inconsistent results when the add, update or lock commands were used. This implementation makes use of a new configuration `installer.no-binary` to allow for user specification of sdist preference for select packages.
@abn this is awesome for |
@fredrikaverpil be sure to check #5609. |
@abn Ah, I see. Thanks! |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This changeset introduces a familiar option from
pip
for Poetry's install command. Users can now use--no-binary :all:|:none:|package
to indicate they do not want to instal lthe binary distribution of packages.Resolves: #1316
Resolves: #5599
Resolves: #365