diff --git a/CHANGES.rst b/CHANGES.rst index 72b96c3..1ddd68b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,6 @@ -1.0.2 (unreleased) +1.0.2 (2026-05-06) ------------------ +- Bug fixed in satellite-specific quenching ingredient (https://github.com/ArgonneCPAC/diffstar/pull/112) - Monte Carlo SFH generators now have required kwargs lgt0 and fb (https://github.com/ArgonneCPAC/diffstar/pull/108) diff --git a/diffstar/diffstarpop/__init__.py b/diffstar/diffstarpop/__init__.py index 326121a..c14809e 100644 --- a/diffstar/diffstarpop/__init__.py +++ b/diffstar/diffstarpop/__init__.py @@ -11,6 +11,9 @@ get_bounded_diffstarpop_params, get_unbounded_diffstarpop_params, ) +from .kernels.params.params_diffstarpopfits_mgash import ( + DiffstarPop_Params_Diffstarpopfits_mgash as SIMULATION_FIT_PARAMS, +) from .mc_diffstarpop_mgash import ( mc_diffstar_params_galpop, mc_diffstar_params_singlegal, diff --git a/diffstar/diffstarpop/tests/test_imports.py b/diffstar/diffstarpop/tests/test_imports.py new file mode 100644 index 0000000..391c67a --- /dev/null +++ b/diffstar/diffstarpop/tests/test_imports.py @@ -0,0 +1,5 @@ +"""Tests of top-level imports from diffstar.diffstarpop""" + + +def test_simulation_fits(): + from .. import SIMULATION_FIT_PARAMS # noqa