Skip to content

Commit

Permalink
Point user to pip debug --verbose to debug incompatible wheel
Browse files Browse the repository at this point in the history
Resolves pypa#9621
  • Loading branch information
jameshfisher authored Feb 19, 2021
1 parent 8365bc3 commit 2ca21df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pip/_internal/index/package_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def evaluate_link(self, link):
# simplify troubleshooting compatibility issues.
file_tags = wheel.get_formatted_file_tags()
reason = (
"none of the wheel's tags match: {}".format(
"none of the wheel's tags ({}) are compatible (run pip debug --verbose to show compatible tags)".format(
', '.join(file_tags)
)
)
Expand Down

0 comments on commit 2ca21df

Please sign in to comment.