From b5d872e53629b9c9cb693272571e00f2017dc31d Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Thu, 9 Sep 2021 11:08:28 +0200
Subject: [PATCH] [conda] remove bob-devel from test requirements [skip ci]

---
 bob/devtools/templates/conda/meta.yaml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/bob/devtools/templates/conda/meta.yaml b/bob/devtools/templates/conda/meta.yaml
index f7b04793..e62a09ec 100644
--- a/bob/devtools/templates/conda/meta.yaml
+++ b/bob/devtools/templates/conda/meta.yaml
@@ -26,11 +26,15 @@ requirements:
     - python {{ python }}
     - setuptools {{ setuptools }}
     - bob.extension
-    # place your other host dependencies here
+    # place your other host dependencies here (same as requirements.txt)
+    # use the format:
+    # - numpy {{ numpy }}
   run:
     - python
     - setuptools
     # place other runtime dependencies here (same as requirements.txt)
+    # Use the format:
+    # - {{ pin_compatible('numpy') }}
 
 test:
   imports:
@@ -44,8 +48,6 @@ test:
     - conda inspect linkages -p $PREFIX {{ name }}  # [not win]
     - conda inspect objects -p $PREFIX {{ name }}  # [osx]
   requires:
-    - bob-devel {{ bob_devel }}.*(% if group == 'beat' %)
-    - beat-devel {{ beat_devel }}.*(% endif %)
     - pytest
     - pytest-cov
     - coverage
-- 
GitLab