File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
+ ## Version 0.4.2.1:
4
+
5
+
6
+ ### Bug Fixes
7
+ - tries to work around wonky index dropdown search bug introduced by latest dash release.
8
+ - Dropdown search now works again, but index propagation is still flaky when number of idxs > max_idxs_in_dropdown(1000 by default)
9
+ - displays warning to downgrade to dash 2.6.2 when this happens
10
+
11
+ ### Improvements
12
+ -
13
+ -
14
+
15
+ ### Other Changes
16
+ - applied black to the codebase
17
+ -
18
+
3
19
4
20
## Version 0.4.2:
5
21
### Breaking Changes
Original file line number Diff line number Diff line change 1
1
2
- ___version__ = "0.4.2"
2
+ ___version__ = "0.4.2.1 "
3
3
4
4
from .explainers import ClassifierExplainer , RegressionExplainer
5
5
from .dashboards import ExplainerDashboard , ExplainerHub , InlineExplainer
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'explainerdashboard' ,
9
- version = '0.4.2' ,
9
+ version = '0.4.2.1 ' ,
10
10
description = 'Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.' ,
11
11
long_description = """
12
12
You can’t perform that action at this time.
0 commit comments