We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b2d89c + c2dd659 commit 67a1221Copy full SHA for 67a1221
setup.py
@@ -71,8 +71,10 @@ def parse_site_cfg():
71
site['mkl']['include_dirs'].split(os.pathsep))
72
lib_dirs.extend(
73
site['mkl']['library_dirs'].split(os.pathsep))
74
+ # numpy's site.cfg splits libraries by comma, but numexpr historically split by os.pathsep.
75
+ # For compatibility, we split by both.
76
libs.extend(
- site['mkl']['libraries'].split(os.pathsep))
77
+ site['mkl']['libraries'].replace(os.pathsep, ',').split(','))
78
def_macros.append(('USE_VML', None))
79
print(f'FOUND MKL IMPORT')
80
0 commit comments