Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
3 changes: 3 additions & 0 deletions diffstar/diffstarpop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 5 additions & 0 deletions diffstar/diffstarpop/tests/test_imports.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Tests of top-level imports from diffstar.diffstarpop"""


def test_simulation_fits():
from .. import SIMULATION_FIT_PARAMS # noqa
Loading