-
Notifications
You must be signed in to change notification settings - Fork 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
Clarify the usage of --no-binary command #7931
Conversation
97372eb
to
4e28210
Compare
src/pip/_internal/cli/cmdoptions.py
Outdated
"(notice the colons), or one or more package names with commas " | ||
"between them (no colons). Note that some packages are tricky to " | ||
"compile and may fail to install when this option is used on " | ||
"them.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reordered the words to resolve the "E501 line too long" lint error, so the change seems a bit weird here...
Can we please single quote the string to avoid escaping? |
@McSinyx I saw most of the quotes in doc are double quotes, maybe we should keep the consistency? |
The preference is to use double quotes to avoid needing to escape common strings like |
Got it! I'll push a new version. |
c8d07e4
to
f7837b1
Compare
@cjc7373 Sorry my wording was unclear 😓 I meant using single quotes for the help string, like: |
Yeah I've misunderstood your meaning. 🤣 Thanks for pointing out! |
f7837b1
to
a51f7ba
Compare
Thanks @cjc7373 :) |
Fixes #3191
Emphasize the existence of colons and add two examples.