Commit 92364fd 1 parent d5de8b3 commit 92364fd Copy full SHA for 92364fd
File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ def build(setup_kwargs):
8
8
from Cython .Build import cythonize
9
9
10
10
use_cython = True
11
+ print ("Cython is available" )
11
12
except ImportError :
12
13
use_cython = False
14
+ print ("Cython is not available" )
13
15
14
16
if use_cython :
15
17
try :
@@ -25,8 +27,16 @@ def build(setup_kwargs):
25
27
)
26
28
setup_kwargs .update ({"ext_modules" : ext_modules })
27
29
print ("Cython modules prepared for compilation" )
30
+ print (f"Number of extensions: { len (ext_modules )} " )
31
+ for ext in ext_modules :
32
+ print (f"Extension: { ext .name } " )
28
33
except Exception as e :
29
34
print (f"Failed to prepare Cython modules: { e } " )
30
35
print ("Falling back to pure Python" )
31
36
else :
32
37
print ("Cython not available, using pure Python" )
38
+
39
+ print (f"Current working directory: { os .getcwd ()} " )
40
+ print (f"Contents of current directory: { os .listdir ('.' )} " )
41
+ print (f"Contents of iscc_core directory: { os .listdir ('iscc_core' )} " )
42
+ print (f"Setup kwargs: { setup_kwargs } " )
You can’t perform that action at this time.
0 commit comments