Skip to content

Commit 69dc52d

Browse files
authored
Merge pull request #112 from ArgonneCPAC/param_convenience
Add `SIMULATION_FIT_PARAMS` to top-level imports from diffstar.diffstarpop
2 parents 8acdf08 + 466b97e commit 69dc52d

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGES.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
1.0.2 (unreleased)
1+
1.0.2 (2026-05-06)
22
------------------
3+
- Bug fixed in satellite-specific quenching ingredient (https://github.com/ArgonneCPAC/diffstar/pull/112)
34
- Monte Carlo SFH generators now have required kwargs lgt0 and fb (https://github.com/ArgonneCPAC/diffstar/pull/108)
45

56

diffstar/diffstarpop/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
get_bounded_diffstarpop_params,
1212
get_unbounded_diffstarpop_params,
1313
)
14+
from .kernels.params.params_diffstarpopfits_mgash import (
15+
DiffstarPop_Params_Diffstarpopfits_mgash as SIMULATION_FIT_PARAMS,
16+
)
1417
from .mc_diffstarpop_mgash import (
1518
mc_diffstar_params_galpop,
1619
mc_diffstar_params_singlegal,
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""Tests of top-level imports from diffstar.diffstarpop"""
2+
3+
4+
def test_simulation_fits():
5+
from .. import SIMULATION_FIT_PARAMS # noqa

0 commit comments

Comments
 (0)