Skip to content

Commit cfd937e

Browse files
committed
version bump 0.4.6
1 parent 5813376 commit cfd937e

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

RELEASE_NOTES.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# Release Notes
22

33

4+
## Version 0.4.6:
5+
6+
7+
### Bug Fixes
8+
- should now work with the format of shap 0.45 that returns a three dimensional np.array instead of a list of 2-dimensional np.arrays for classifiers
9+
-
10+
11+
### Improvements
12+
- Fixed several pandas warning about to be deprecated behaviours
13+
-
14+
15+
### Other Changes
16+
-
17+
-
18+
19+
20+
421
## Version 0.4.4:
522
### Breaking Changes
623
-

explainerdashboard/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
___version__ = "0.4.5"
1+
___version__ = "0.4.6"
22

3-
from .explainers import ClassifierExplainer, RegressionExplainer
4-
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer
3+
from .explainers import ClassifierExplainer, RegressionExplainer # noqa
4+
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer # noqa

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="explainerdashboard",
8-
version="0.4.5",
8+
version="0.4.6",
99
description='Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.',
1010
long_description="""
1111

0 commit comments

Comments
 (0)