Skip to content

Commit

Permalink
Merge pull request #12558 from godlygeek/improve_failing_pep517_build…
Browse files Browse the repository at this point in the history
…_error_message
  • Loading branch information
uranusjr authored Mar 12, 2024
2 parents acd932e + d70dc45 commit 3682309
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file.
4 changes: 2 additions & 2 deletions src/pip/_internal/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ def run(self, options: Values, args: List[str]) -> int:

if build_failures:
raise InstallationError(
"Could not build wheels for {}, which is required to "
"install pyproject.toml-based projects".format(
"ERROR: Failed to build installable wheels for some "
"pyproject.toml based projects ({})".format(
", ".join(r.name for r in build_failures) # type: ignore
)
)
Expand Down

0 comments on commit 3682309

Please sign in to comment.