From ddfc2316c26b95500990333282a08e5fd5635981 Mon Sep 17 00:00:00 2001 From: Arin Wongprommoon <arin.wongprommoon@ed.ac.uk> Date: Thu, 7 Jul 2022 16:43:38 +0100 Subject: [PATCH] fix(dependencies): Switch from catch22 to pycatch22 WHY IS THIS CHANGE NEEDED?: - catch22 developers deleted it from pyPI and moved it to pycatch22 HOW DOES THE CHANGE SOLVE THE PROBLEM?: - used poetry to remove catch22 and add pycatch22 - updated the only thing in postprocesses that depends on catch22 REFERENCES: - issue #26 --- core/processes/catch22.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/processes/catch22.py b/core/processes/catch22.py index f6855a0e..aa5ab119 100644 --- a/core/processes/catch22.py +++ b/core/processes/catch22.py @@ -1,10 +1,9 @@ #!/usr/bin/env python3 - import numpy as np import pandas as pd from sklearn import decomposition -from catch22 import catch22_all +from pycatch22 import catch22_all from agora.abc import ParametersABC from postprocessor.core.abc import PostProcessABC -- GitLab