From d6ac0fff8513274f1c0b4bfc4214147e0fa26651 Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Wed, 6 Oct 2021 10:56:56 +0200
Subject: [PATCH] Add blas pins

---
 bob/devtools/data/conda_build_config.yaml | 24 ++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/bob/devtools/data/conda_build_config.yaml b/bob/devtools/data/conda_build_config.yaml
index 6cae8f44..8d78543b 100644
--- a/bob/devtools/data/conda_build_config.yaml
+++ b/bob/devtools/data/conda_build_config.yaml
@@ -287,9 +287,27 @@ pin_run_as_build:
 # Ideally we want to build against the oldest possible version of
 # packages so packages can be installed with a wide range of versions. It is
 # best to keep this in sync with:
-# https://github.com/AnacondaRecipes/aggregate/blob/master/conda_build_config.yaml The
-# names here should not contain dots or dashes. You should replace dots and dashes with
-# underlines.
+# https://github.com/conda-forge/conda-forge-pinning-feedstock/blob/master/recipe/conda_build_config.yaml
+# The names here should not contain dots or dashes. You should replace dots and
+# dashes with underlines.
+
+# blas
+libblas:
+  - 3.8 *netlib  # [not (osx and arm64)]
+  - 3.9 *netlib  # [osx and arm64]
+libcblas:
+  - 3.8 *netlib  # [not (osx and arm64)]
+  - 3.9 *netlib  # [osx and arm64]
+liblapack:
+  - 3.8 *netlib  # [not (osx and arm64)]
+  - 3.9 *netlib  # [osx and arm64]
+liblapacke:
+  - 3.8 *netlib  # [not (osx and arm64)]
+  - 3.9 *netlib  # [osx and arm64]
+blas_impl:
+  - openblas
+  - mkl          # [x86 or x86_64]
+  - blis         # [x86 or x86_64]
 
 # AUTOMATIC PARSING START
 # DO NOT MODIFY THIS COMMENT
-- 
GitLab