Skip to content

Commit

Permalink
fixes #504
Browse files Browse the repository at this point in the history
  • Loading branch information
amaiya committed Jul 22, 2023
1 parent d2a2cda commit 80c1ae4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions ktrain/text/eda.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion ktrain/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__all__ = ["__version__"]
__version__ = "0.37.2"
__version__ = "0.37.3"

0 comments on commit 80c1ae4

Please sign in to comment.