From ec3b5c58e55ddc60b799fee08fcd99f3328aa719 Mon Sep 17 00:00:00 2001
From: Yannick DAYER <yannick.dayer@idiap.ch>
Date: Sat, 11 Feb 2023 22:58:28 +0100
Subject: [PATCH] [deps] Add requests to dependencies.

---
 conda/meta.yaml | 4 +++-
 pyproject.toml  | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/conda/meta.yaml b/conda/meta.yaml
index 4c3b158..2a3fb6d 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -31,7 +31,8 @@ requirements:
     - distributed {{ distributed }}
     - scikit-learn {{ scikit_learn }}
     - xarray {{ xarray }}
-    - h5py {{h5py}}
+    - h5py {{ h5py }}
+    - requests {{ requests }}
     # optional dependencies
     - dask-ml {{ dask_ml }}
   run:
@@ -46,6 +47,7 @@ requirements:
     - {{ pin_compatible('scikit-learn') }}
     - {{ pin_compatible('xarray') }}
     - {{ pin_compatible('h5py') }}
+    - requests
   run_constrained:
     - {{ pin_compatible('dask-ml') }}
 
diff --git a/pyproject.toml b/pyproject.toml
index 8eb2af5..7be64e5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -36,6 +36,7 @@
         "dask-jobqueue",
         "xarray",
         "h5py",
+        "requests",
     ]
 
 [project.urls]
-- 
GitLab