From 033ee8ea60e23eeb45e85a9723bacdc761196f51 Mon Sep 17 00:00:00 2001 From: Oege Dijk Date: Sun, 24 Oct 2021 21:30:56 +0200 Subject: [PATCH] downgrades dash-bootstrap-components breaking changes in version 1.0, so setting dbc<1 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0578d9b..54f07d1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='explainerdashboard', - version='0.3.6.2', + version='0.3.7', description='Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.', long_description=""" @@ -68,7 +68,7 @@ "Intended Audience :: Developers", "Intended Audience :: Education", "Topic :: Scientific/Engineering :: Artificial Intelligence"], - install_requires=['dash>=1.20', 'dash-bootstrap-components', 'jupyter_dash', 'dash-auth', + install_requires=['dash>=1.20', 'dash-bootstrap-components<1', 'jupyter_dash', 'dash-auth', 'dtreeviz>=1.3', 'numpy', 'pandas>=1.1', 'scikit-learn', 'shap>=0.37', 'joblib', 'oyaml', 'click', 'waitress', 'flask_simplelogin', 'orjson'],