pydata / numexpr

Fast numerical array expression evaluator for Python, NumPy, Pandas, PyTables and more
https://numexpr.readthedocs.io/en/latest/user_guide.html
MIT License
2.23k stars 210 forks source link

Fix setup.py to respect numpy's parsing of libraries in site.cfg #443

Closed de11n closed 1 year ago

de11n commented 1 year ago

numpy parses libraries in site.cfg by splitting on comma. We want to maintain compatibility with that, but we've already established os.pathname by accident. To minimize breakages, we support both.

Fixes #407

robbmcleod commented 1 year ago

Thanks.