From 9fe5a6f1df1f03b0cdc3848aece1d1989c3e9fa7 Mon Sep 17 00:00:00 2001 From: MaximeLecardonnel6x7 Date: Thu, 4 May 2023 10:47:52 +0200 Subject: [PATCH 1/2] Fix Flask below 2.3.0. --- requirements.dev.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.dev.txt b/requirements.dev.txt index c6ac0d95..a8c32767 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -3,6 +3,7 @@ numpy>=1.18.0 dash==2.3.1 catboost>=1.0.1 category-encoders>=2.6.0 +Flask<2.3.0 dash-bootstrap-components==1.1.0 dash-core-components==2.0.0 dash-daq==0.5.0 diff --git a/setup.py b/setup.py index ada186cb..5c75392c 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ 'numpy>1.18.0', 'pandas>1.0.2,<2.0.0', 'shap>=0.38.1', + 'Flask<2.3.0', 'dash>=2.3.1', 'dash-bootstrap-components>=1.1.0', 'dash-core-components>=2.0.0', From 8ea0303ada263bce9239785ec779065b2b05b8a4 Mon Sep 17 00:00:00 2001 From: MaximeLecardonnel6x7 Date: Thu, 4 May 2023 13:54:06 +0200 Subject: [PATCH 2/2] Bump version. --- shapash/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapash/__version__.py b/shapash/__version__.py index fc323352..31d6d676 100644 --- a/shapash/__version__.py +++ b/shapash/__version__.py @@ -1,3 +1,3 @@ -VERSION = (2, 3, 2) +VERSION = (2, 3, 3) __version__ = ".".join(map(str, VERSION))