Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/pydata/numexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
robbmcleod committed Aug 6, 2023
2 parents 00b035c + 67a1221 commit 1c6bce1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ def parse_site_cfg():
site['mkl']['include_dirs'].split(os.pathsep))
lib_dirs.extend(
site['mkl']['library_dirs'].split(os.pathsep))
# numpy's site.cfg splits libraries by comma, but numexpr historically split by os.pathsep.
# For compatibility, we split by both.
libs.extend(
site['mkl']['libraries'].split(os.pathsep))
site['mkl']['libraries'].replace(os.pathsep, ',').split(','))
def_macros.append(('USE_VML', None))
print(f'FOUND MKL IMPORT')

Expand Down

0 comments on commit 1c6bce1

Please sign in to comment.