Skip to content

Commit 5619074

Browse files
authored
Merge pull request #143 from LukasBeiske/disp_plots_fix
Fix padding for disp performance plots and relax scikit-learn requirements
2 parents 1ea4034 + fe3066d commit 5619074

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aict_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.24.2'
1+
__version__ = '0.25.0'

aict_tools/scripts/plot_disp_performance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def main(configuration_path, performance_path, data_path, disp_model_path, sign_
133133
else:
134134
with PdfPages(output) as pdf:
135135
for fig in figures:
136-
fig.tight_layout(pad=0)
136+
fig.tight_layout(pad=0, h_pad=1.08, w_pad=1.08)
137137
pdf.savefig(fig)
138138

139139

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
'python-dateutil', # in anaconda
4646
'pytz', # in anaconda
4747
'ruamel.yaml>=0.15.0', # in anaconda
48-
'scikit-learn~=0.21.0', # See PEP 440, compatible releases
48+
'scikit-learn>=0.21.0', # See PEP 440, compatible releases
4949
'tqdm',
5050
],
5151
extras_require=extras_require,

0 commit comments

Comments
 (0)