Skip to content

Commit

Permalink
fix error message for pip.py (#2190)
Browse files Browse the repository at this point in the history
  • Loading branch information
savingoyal authored Dec 27, 2024
1 parent be7b6f3 commit 94e0093
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions metaflow/plugins/pypi/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ def solve(self, id_, packages, python, platform):
except PipPackageNotFound as ex:
# pretty print package errors
raise PipException(
"Could not find a binary distribution for %s \n"
"for the platform %s\n\n"
"Note that ***@pypi*** does not currently support source distributions"
"Unable to find a binary distribution compatible with %s for %s.\n\n"
"Note: ***@pypi*** does not currently support source distributions"
% (ex.package_spec, platform)
)

Expand Down

0 comments on commit 94e0093

Please sign in to comment.