-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
"pip install --quiet" hides conflict information #10519
Comments
I consider this is a feature request to the error messages. |
This is probably a "bug" more than a "feature request" -- however, fixing this will be very involved. The cause for this is very clear: the conflict information is logged at the
That's because we'd gotten fairly clear user feedback that the entire error message being in red was not-great, so we moved away from using |
That makes sense, thanks for the background.
Cheers 🍻 |
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
@pradyunsg @DiddiLeija I opened #10763 to fix this issue and it's ready for review. |
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
Previously, each logging level was coupled with a specific output color. This isn't always ideal because we might need to log at a certain level but use a custom color (based on user feedback / see linked issue). This patch decouples the logs output color from the logging level. Fixes pypa#10519
Description
When using
--quiet
to hide somepip
output, it no longer elaborates on which specific packages are conflicting:Expected behavior
I'd expect output that looks something like this:
pip version
21.2.3
Python version
3.6
OS
Fedora 34
How to Reproduce
Output
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: