Skip to content

Commit

Permalink
Present found conflicts when discarding some criterion (#10937)
Browse files Browse the repository at this point in the history
  • Loading branch information
astrojuanlu authored Mar 26, 2023
1 parent 8271fdb commit 9731131
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions news/10937.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Present conflict information during installation after each choice that is rejected (pass ``-vv`` to ``pip install`` to show it)
12 changes: 12 additions & 0 deletions src/pip/_internal/resolution/resolvelib/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@ def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None:
message = self._messages_at_reject_count[count]
logger.info("INFO: %s", message.format(package_name=candidate.name))

msg = "Will try a different candidate, due to conflict:"
for req_info in criterion.information:
req, parent = req_info.requirement, req_info.parent
# Inspired by Factory.get_installation_error
msg += "\n "
if parent:
msg += f"{parent.name} {parent.version} depends on "
else:
msg += "The user requested "
msg += req.format_for_error()
logger.debug(msg)


class PipDebuggingReporter(BaseReporter):
"""A reporter that does an info log for every event it sees."""
Expand Down

0 comments on commit 9731131

Please sign in to comment.