From e265df1e8bb9bafe800ba40256d987752d662b44 Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Thu, 13 Aug 2020 14:08:31 +0100
Subject: [PATCH] MNT: on conda-forge, "boost" is not boost - "boost-cpp" is
 boost, and I have to pin against an older version to ensure ABI compatibility

---
 meta.yaml | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/meta.yaml b/meta.yaml
index 87fb159..eaa1639 100644
--- a/meta.yaml
+++ b/meta.yaml
@@ -25,8 +25,16 @@ build:
 
 requirements:
   run:
-   - python     3.7.*
    - tk         8.6.*
    - openblas   0.3.*
    - zlib     >=1.2.*
-   - boost    >=1.58
\ No newline at end of file
+   # newer versions of boost on conda-forge are
+   # built with newer CXX11 abi compatibility,
+   # and thus are not compatible with other
+   # conda-forge packages.
+   - boost-cpp  1.67
+   - python     3.7.*
+   - numpy      1.18.5
+   - scipy      1.4.1
+   - nibabel    2.5.1
+   - fslpy      3.2.2
-- 
GitLab