Skip to content

Commit a09a778

Browse files
author
Sarah Krebs
committed
Merge branch 'development' of github.com:automl/DeepCAVE into enhancement/random_seeds
2 parents 900c5d7 + fea1a2a commit a09a778

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 1.1.3
2+
3+
## Bug-Fixes
4+
- Fix seaborn style name (#82).
5+
16
# Version 1.1.2
27

38
## Bug-Fixes

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# are usually completed in github actions.
33

44
SHELL := /bin/bash
5-
VERSION := 1.1.2
5+
VERSION := 1.1.3
66

77
NAME := DeepCAVE
88
PACKAGE_NAME := deepcave

deepcave/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"Source Code": "https://github.com/automl/deepcave",
1818
}
1919
copyright = f"Copyright {datetime.date.today().strftime('%Y')}, {author}"
20-
version = "1.1.2"
20+
version = "1.1.3"
2121

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

deepcave/utils/styled_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class StyledPlot:
2525
"""
2626

2727
def __init__(self):
28-
plt.style.use("seaborn")
28+
plt.style.use("seaborn-v0_8")
2929

3030
# Set MatPlotLib defaults
3131
if find_executable("latex"):

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jsonlines>=3.0.0
55
pandas>=1.3.4
66
numpy>=1.22.2
77
matplotlib>=3.5.1
8-
seaborn>=0.12.2
8+
seaborn>=0.13.0
99
pyyaml
1010

1111
# AutoML packages

0 commit comments

Comments
 (0)