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 ac402f0 commit d78ae13Copy full SHA for d78ae13
python/setup.py
@@ -323,10 +323,11 @@ def _run_cmake(self):
323
# Move the built C-extension to the place expected by the Python
324
# build
325
self._found_names = []
326
+ print(os.listdir())
327
for name in self.CYTHON_MODULE_NAMES:
328
built_path = self.get_ext_built(name)
329
if not os.path.exists(built_path):
- print(built_path)
330
+ print('Did not find {0}'.format(built_path))
331
if self._failure_permitted(name):
332
print('Cython module {0} failure permitted'
333
.format(name))
0 commit comments