From a083690d241c5650139ef86c857e27602141f198 Mon Sep 17 00:00:00 2001
From: Vincent <vincent.pollet@idiap.ch>
Date: Thu, 7 Apr 2022 11:47:53 +0200
Subject: [PATCH] Add explicit imageio dependency

---
 conda/meta.yaml  | 2 ++
 requirements.txt | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/conda/meta.yaml b/conda/meta.yaml
index c5d0abf..49dcbd0 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -30,6 +30,7 @@ requirements:
     - numpy {{ numpy }}
     - scipy {{ scipy }}
     - opencv {{ opencv }}
+    - imageio {{ imageio }}
     - bob.io.image
   run:
     - python
@@ -38,6 +39,7 @@ requirements:
     - {{ pin_compatible('numpy') }}
     - {{ pin_compatible('scipy') }}
     - {{ pin_compatible('opencv') }}
+    - {{ pin_compatible('imageio') }}
 
 test:
   imports:
diff --git a/requirements.txt b/requirements.txt
index 239527a..a9ae9f4 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,4 +3,5 @@ numpy
 scipy
 h5py
 # opencv  We need opencv, but the opencv package is broken and can't be installed with pip. Install it with conda.
-bob.io.image
\ No newline at end of file
+imageio
+bob.io.image
-- 
GitLab