Skip to content

Commit b0224a2

Browse files
authored
Merge pull request #128 from automl/development
Release 1.1.2
2 parents b1857a7 + d27b7e3 commit b0224a2

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.1.2
2+
3+
## Bugfixes
4+
* Bokeh plots ignored the `show_plot`-argument and always opened browser (#127)
5+
16
# 1.1.1
27

38
## Major changes

pimp/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Version information."""
2-
__version__ = "1.1.1"
2+
__version__ = "1.1.2"

pimp/utils/bokeh_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def bokeh_boxplot(labels, mean, std, x_label, y_label, runtime, inc_indices):
115115
def bokeh_multiline(data, x_limits, y_limits, x_column, line_columns, y_label, z_label):
116116
"""
117117
Bokeh multiline plot
118-
118+
119119
Parameters
120120
----------
121121
data: pandas.DataFrame
@@ -218,7 +218,7 @@ def save_and_show(plot_name, show_plot, layout):
218218
plot_name = plot_name + '.html'
219219
output_file(plot_name)
220220
save(layout)
221-
if True or show_plot:
221+
if show_plot:
222222
show(layout)
223223

224224
def shorten_unique(names, keep_first=4, keep_last=4):

0 commit comments

Comments
 (0)