From 77389f22a4d871b6fb3fbdfa3e262da4a42f2be1 Mon Sep 17 00:00:00 2001 From: ThomasBouche Date: Tue, 17 Jan 2023 15:43:35 +0100 Subject: [PATCH 1/3] limit version catgeory encoders --- requirements.dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.dev.txt b/requirements.dev.txt index a7ade853..0de2c3d7 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -2,7 +2,7 @@ pip==21.3.1 numpy>=1.18.0 dash==2.3.1 catboost>=1.0.1 -category-encoders>=2.2.2 +category-encoders>=2.2.2,<2.6.0 dash-bootstrap-components==1.1.0 dash-core-components==2.0.0 dash-daq==0.5.0 From e3ce1d3d73f244ed72aebd52c8392790c0b92a48 Mon Sep 17 00:00:00 2001 From: ThomasBouche Date: Tue, 17 Jan 2023 15:45:22 +0100 Subject: [PATCH 2/3] limit version catgeory encoders --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 058656be..b3cb9a49 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ 'nbformat>4.2.0', 'numba>=0.53.1', 'scikit-learn>=0.24.0,<1.2.0', - 'category_encoders>=2.2.2', + 'category_encoders>=2.2.2,<2.6.0', 'scipy>=0.19.1', ] From f0b7b8df67f0130f360836e0b6587f77aad7de8c Mon Sep 17 00:00:00 2001 From: ThomasBouche Date: Tue, 17 Jan 2023 15:48:52 +0100 Subject: [PATCH 3/3] bump version --- shapash/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapash/__version__.py b/shapash/__version__.py index d429eb59..dc82b5db 100644 --- a/shapash/__version__.py +++ b/shapash/__version__.py @@ -1,3 +1,3 @@ -VERSION = (2, 2, 1) +VERSION = (2, 2, 2) __version__ = ".".join(map(str, VERSION))