File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2222 run : python -m pip install cibuildwheel
2323 - name : Build lib
2424 run : python setup.py build_lib
25+ - name : Build cffi
26+ run : python setup.py build_cffi
2527
2628
29+
2730 - name : Build wheels
2831 run : python -m cibuildwheel --output-dir wheelhouse
2932 env :
Original file line number Diff line number Diff line change @@ -245,9 +245,9 @@ def visit_FuncDecl(self, node):
245245 try :
246246 ast = pycparser .parse_file (os .sep .join ([include_dir , header ]), ** pycparser_args )
247247 collector .visit (ast )
248- print (f"✅ Successfully parsed { header } " )
248+ print (f"Successfully parsed { header } " )
249249 except Exception as e :
250- print (f"❌ Failed to parse { header } : { e } " )
250+ print (f"Failed to parse { header } : { e } " )
251251 # Don't continue with broken parsing - this should work
252252 raise
253253
@@ -297,7 +297,7 @@ def visit_FuncDecl(self, node):
297297
298298ffi .cdef (cdef )
299299
300- print ("✅ CFFI configuration completed successfully!" )
300+ print ("CFFI configuration completed successfully!" )
301301
302302# Optional: save for debugging
303303if False :
You can’t perform that action at this time.
0 commit comments