Skip to content

Commit ee78010

Browse files
authored
Merge pull request #209 from automl/development
Development
2 parents 2e0efb0 + af13fb7 commit ee78010

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
## Bug-Fixes
44
- Fixed configuration footprint for Mac platforms
5+
- fix bug in plots
56

67
## Converters
78
- Add for each converter a method to check whether a run is valid.
89
- Change rst docs of converters.
910

1011
## Quality of Life
1112
- Improve documentation on installation for Mac platforms
12-
-
13+
1314
## General Layout
1415
- Fix navigation and button problems in general layout.
1516
- Change general layout to be more intuitive.

deepcave/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"Source Code": "https://github.com/automl/deepcave",
4545
}
4646
copyright = f"Copyright {datetime.date.today().strftime('%Y')}, {author}"
47-
version = "1.3.2"
47+
version = "1.3.3"
4848

4949
_exec_file = sys.argv[0]
5050
_exec_files = ["server.py", "worker.py", "sphinx-build"]

deepcave/plugins/summary/configurations.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,7 @@ def _get_objective_figure(
416416
yaxis = f"yaxis{id+1}"
417417

418418
layout_kwargs[yaxis] = {
419-
# "title": objective.name,
420-
"titlefont": {"color": get_color(id)},
419+
"title": {"text": objective.name, "font": {"color": get_color(id)}},
421420
"tickfont": {"color": get_color(id)},
422421
"range": [objective.lower, objective.upper],
423422
}

0 commit comments

Comments
 (0)