Skip to content

Commit 0ee1561

Browse files
committed
Merge branch 'hotfix/1.4.6' #115
2 parents 67c4c6b + bbf38e8 commit 0ee1561

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

Metallicity_Stack_Commons/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from .logging import log_stdout, log_verbose
1212

13-
version = "1.4.3"
13+
version = "1.4.6"
1414

1515
lambda0 = [3726.18, 4101.73, 4340.46, 4363.21, 4861.32, 4958.91, 5006.84]
1616
line_type = ['Oxy2', 'Balmer', 'Balmer', 'Single', 'Balmer', 'Single', 'Single']

Metallicity_Stack_Commons/plotting/balmer.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,9 @@ def HbHgHd_fits(fitspath: str, out_pdf_prefix: str ='HbHgHd_fits',
252252
label='Delta Fit')
253253
ax_arr[row][0].set_xlim(4050, 4150)
254254

255-
ax_arr[row][0].set_ylim(0, 1.6)
256-
255+
for p in [0, 1, 2]:
256+
ax_arr[row][p].set_ylim(0, 1.6)
257+
257258
ax_arr[row][0].annotate(txt2, [0.95, 0.95], xycoords='axes fraction',
258259
va='top', ha='right', fontsize='5')
259260
ax_arr[row][0].plot(wave[Hd_fit_dict['idx_sig']], Hd_fit_dict['residual'],

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='Metallicity_Stack_Commons',
8-
version='1.4.3',
8+
version='1.4.6',
99
packages=['Metallicity_Stack_Commons'],
1010
url='https://github.com/astrochun/Metallicity_Stack_Commons',
1111
license='MIT License',

0 commit comments

Comments
 (0)