From e61dc359f9f3e839cf4422b9971cb6646cf6c83a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai=20Capot=C4=83?= Date: Mon, 11 Nov 2019 10:53:27 -0800 Subject: [PATCH] dev: Add MPICH as explicit dependency for Conda Conda defaults to OpenMPI, which is causing problems in Travis: https://travis-ci.org/brainiak/brainiak/jobs/609792226 --- .conda/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.conda/meta.yaml b/.conda/meta.yaml index 6d599bd4d..bbd2c4305 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -36,6 +36,7 @@ requirements: - python - setuptools - pip + - mpich - openmp {% for req in data.get('setup_requires', []) if req not in conda_package_nonexistent -%} @@ -48,6 +49,7 @@ requirements: run: - python + - mpich - openmp {% for req in data.get('install_requires', []) if req not in conda_package_nonexistent -%}