From dbac940d7cc3ece0eeb5dc085cc33be6236312a3 Mon Sep 17 00:00:00 2001
From: Tiago Freitas Pereira <tiagofrepereira@gmail.com>
Date: Mon, 23 Mar 2020 11:05:32 +0100
Subject: [PATCH] Added some deprecation warnings

---
 bob/bio/base/algorithm/Algorithm.py       | 5 ++++-
 bob/bio/base/extractor/Extractor.py       | 4 ++++
 bob/bio/base/preprocessor/Preprocessor.py | 7 ++++++-
 3 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/bob/bio/base/algorithm/Algorithm.py b/bob/bio/base/algorithm/Algorithm.py
index 696e602d..f0316645 100644
--- a/bob/bio/base/algorithm/Algorithm.py
+++ b/bob/bio/base/algorithm/Algorithm.py
@@ -91,7 +91,10 @@ class Algorithm (object):
   ):
 
     
-    warnings.warn("bob.bio.base.Algorithm is Deprecated", DeprecationWarning)
+    warnings.simplefilter('default')
+    warnings.warn("`bob.bio.base.algorithm.Algorithm` will be deprecated in 01/01/2021. "\
+                  "Please, implement your biometric algorithm using `bob.pipelines` (https://gitlab.idiap.ch/bob/bob.pipelines).", DeprecationWarning)
+
 
 
     self.performs_projection = performs_projection
diff --git a/bob/bio/base/extractor/Extractor.py b/bob/bio/base/extractor/Extractor.py
index fc09fb62..c37e4439 100644
--- a/bob/bio/base/extractor/Extractor.py
+++ b/bob/bio/base/extractor/Extractor.py
@@ -53,6 +53,10 @@ class Extractor (object):
     self.min_feature_file_size = min_feature_file_size
     self._kwargs = kwargs
 
+    warnings.simplefilter('default')
+    warnings.warn("`bob.bio.base.extractor.Extractor` will be deprecated in 01/01/2021. "\
+                  "Please, implement your biometric algorithm using `bob.pipelines` (https://gitlab.idiap.ch/bob/bob.pipelines).", DeprecationWarning)
+
 
   ############################################################
   ### functions that must be overwritten in derived classes
diff --git a/bob/bio/base/preprocessor/Preprocessor.py b/bob/bio/base/preprocessor/Preprocessor.py
index c1e1aeee..dc5d7e47 100644
--- a/bob/bio/base/preprocessor/Preprocessor.py
+++ b/bob/bio/base/preprocessor/Preprocessor.py
@@ -39,7 +39,12 @@ class Preprocessor (object):
         self.read_original_data = read_original_data
         self.min_preprocessed_file_size = min_preprocessed_file_size
         self._kwargs = kwargs
-        pass
+
+        warnings.simplefilter('default')
+        warnings.warn("`bob.bio.base.preprocessor.Preprocessor` will be deprecated in 01/01/2021. "\
+                      "Please, implement your biometric algorithm using `bob.pipelines` (https://gitlab.idiap.ch/bob/bob.pipelines).", DeprecationWarning)
+
+
 
     # The call function (i.e. the operator() in C++ terms)
     def __call__(self, data, annotations):
-- 
GitLab