Skip to content

Commit 9777d51

Browse files
committed
🧐 print build errors on fail
1 parent 12457eb commit 9777d51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ def run(self):
4949
" Unable to build the C extensions, will use the slower python "
5050
"fallback for LTTB"
5151
)
52-
pass
52+
print(e)
5353

5454
def build_extension(self, ext):
5555
try:
5656
build_ext.build_extension(self, ext)
5757
except (
58+
DistutilsPlatformError,
5859
CCompilerError,
5960
DistutilsExecError,
60-
DistutilsPlatformError,
6161
ValueError,
6262
) as e:
6363
print(

0 commit comments

Comments
 (0)