From 952805842ca7ec42e34d8cd1c7dc71a6ee281f5a Mon Sep 17 00:00:00 2001 From: Mario Juric Date: Fri, 3 Jun 2016 02:39:08 +0000 Subject: [PATCH] Bump pinned numpy to 1.10.4 We need to do this to work around an issue with mkl packages shipped with older version of numpy. See: https://github.com/ContinuumIO/anaconda-issues/issues/698#issuecomment-204806498 for more. Using numpy 1.9.x, the code would build with mkl but ip-diffim would fail tests because mkl couldn't find all of its libraries and therefore symbols (would terminate with `python: symbol lookup error`). See the above issue for more. --- etc/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/config.yaml b/etc/config.yaml index 2b51ecb..97f6433 100644 --- a/etc/config.yaml +++ b/etc/config.yaml @@ -179,8 +179,8 @@ dependencies: # pin_versions: numpy: - build: "==1.9" - run: ">=1.9" + build: "==1.10.4" + run: ">=1.10.4" python: build: "2.7.*" run: "2.7.*"