From 1b70530a76184c9f779c01a98513ff095ea308cb Mon Sep 17 00:00:00 2001
From: Yannick DAYER <yannick.dayer@idiap.ch>
Date: Wed, 14 Jun 2023 11:14:39 +0200
Subject: [PATCH] meta(deps): add bob as dependency in new structure

---
 conda/meta.yaml | 6 ++++--
 pyproject.toml  | 8 ++++----
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/conda/meta.yaml b/conda/meta.yaml
index 28fb92f..c23e708 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -21,20 +21,22 @@ requirements:
     - python {{ python }}
     - setuptools {{ setuptools }}
     - pip {{ pip }}
-    - clapper
+    - bob
     - bob.measure
     - bob.learn.em
     - bob.bio.base
+    - clapper {{ clapper }}
     - matplotlib {{ matplotlib }}
     - numpy {{ numpy }}
     - scikit-learn {{ scikit_learn }}
   run:
     - python
     - setuptools
-    - clapper
+    - bob
     - bob.measure
     - bob.learn.em
     - bob.bio.base
+    - {{ pin_compatible('clapper') }}
     - {{ pin_compatible('matplotlib') }}
     - {{ pin_compatible('numpy') }}
     - {{ pin_compatible('scikit-learn') }}
diff --git a/pyproject.toml b/pyproject.toml
index c5f4db1..57bcf6d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -24,14 +24,14 @@
         "Topic :: Scientific/Engineering :: Artificial Intelligence",
     ]
     dependencies = [
-        "setuptools",
-        "numpy",
-        "clapper",
+        "bob",
         "bob.measure",
         "bob.learn.em",
         "bob.bio.base",
-        "scikit-learn",
+        "clapper",
         "matplotlib",
+        "numpy",
+        "scikit-learn",
     ]
 
 [project.urls]
-- 
GitLab