manodeep / Corrfunc

⚡️⚡️⚡️Blazing fast correlation functions on the CPU.
https://corrfunc.readthedocs.io
MIT License
165 stars 50 forks source link

fixing conda build #131

Closed nickhand closed 7 years ago

nickhand commented 7 years ago

By re-naming mac install name to include .so, Corrfunc can be built on linux and Mac. The meta.yaml file will build pinned numpy versions. For nbodykit we use

conda build-all Corrfunc/ --matrix-max-n-minor-versions 3 --matrix-conditions "2.7*|>3.4" "numpy >=1.11*"

This will build for Python versions 2.7, 3.5, and 3.6 and numpy versions 1.11, 1.12, and 1.13.

A new pypi version will need to be added and the links updated for this to build properly.

manodeep commented 7 years ago

Fantastic! Thanks a bunch.