diff --git a/CHANGELOG.md b/CHANGELOG.md index bd485bb13..ae407f3b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ Most recent releases are shown at the top. Each release shows: - **Changed**: Additional parameters, changes to inputs or outputs, etc - **Fixed**: Bug fixes that don't change documented behaviour +## 0.37.3 (2023-07-22) + +### new: +- N/A + +### changed +- N/A + +### fixed: +- fix `eda.py` topic visualization to work with `bokeh>=3.0.0` (#504) + + ## 0.37.2 (2023-06-14) ### new: diff --git a/ktrain/text/eda.py b/ktrain/text/eda.py index 761bf675a..32b458046 100755 --- a/ktrain/text/eda.py +++ b/ktrain/text/eda.py @@ -596,8 +596,8 @@ def visualize_documents( source = bp.ColumnDataSource(data=dct) hover = HoverTool(tooltips=tool_tups) p = bp.figure( - plot_width=width, - plot_height=height, + width=width, + height=height, tools=[hover, "save", "pan", "wheel_zoom", "box_zoom", "reset"], # tools="pan,wheel_zoom,box_zoom,reset,hover,previewsave", title=title, diff --git a/ktrain/version.py b/ktrain/version.py index cd258f624..cb06149e7 100644 --- a/ktrain/version.py +++ b/ktrain/version.py @@ -1,2 +1,2 @@ __all__ = ["__version__"] -__version__ = "0.37.2" +__version__ = "0.37.3"