Skip to content

By default, provide a much more concise error message. #4985

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

Merged
merged 3 commits into from
May 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions setuptools/command/editable_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,12 @@ def run(self) -> None:

self._create_wheel_file(bdist_wheel)
except Exception:
traceback.print_exc()
project = self.distribution.name or self.distribution.get_name()
_DebuggingTips.emit(project=project)
if os.environ.get('SETUPTOOLS_INTERNAL_DEBUG'):
traceback.print_exc()
_DebuggingTips.emit(project=project)
else:
print("An error occurred building editable wheel for", project)
raise

def _ensure_dist_info(self):
Expand Down
Loading