Related to this line
|
return Extension(name, [ext_src], extra_compile_args = pkg.compile_args, include_dirs = pkg.include_dirs + [numpy.get_include()], library_dirs = pkg.library_dirs, libraries = pkg.libraries) |
This happened on my desktop computer and I didn't really investigate why, but it stops the build at that line because you cannot use + operator between filters and lists.
Maybe cherry-pick the commit
rafaelxero@b998959
adding the line
pkg.include_dirs=list(pkg.include_dirs)
From my PR to Rafael's fork (on our own branch)
rafaelxero#1
Related to this line
sch-core-python/setup.in.py
Line 65 in 2890b2c
This happened on my desktop computer and I didn't really investigate why, but it stops the build at that line because you cannot use + operator between filters and lists.
Maybe cherry-pick the commit
rafaelxero@b998959
adding the line
pkg.include_dirs=list(pkg.include_dirs)From my PR to Rafael's fork (on our own branch)
rafaelxero#1