We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37845b commit aa911c6Copy full SHA for aa911c6
setuptools/command/editable_wheel.py
@@ -138,9 +138,12 @@ def run(self) -> None:
138
139
self._create_wheel_file(bdist_wheel)
140
except Exception:
141
- traceback.print_exc()
142
project = self.distribution.name or self.distribution.get_name()
143
- _DebuggingTips.emit(project=project)
+ if os.environ.get('SETUPTOOLS_INTERNAL_DEBUG'):
+ traceback.print_exc()
144
+ _DebuggingTips.emit(project=project)
145
+ else:
146
+ print("An error occurred building editable wheel for", project)
147
raise
148
149
def _ensure_dist_info(self):
0 commit comments