From c034d97e145deb9dd302a245ae612bb0aa2415ac Mon Sep 17 00:00:00 2001 From: Patrick Wells Date: Fri, 20 Mar 2026 11:57:04 -0500 Subject: [PATCH 1/2] Allow heinlein plugin to take arbitrary kwargs --- src/cosmap/dataset/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cosmap/dataset/plugins.py b/src/cosmap/dataset/plugins.py index f8c4755..c00610f 100644 --- a/src/cosmap/dataset/plugins.py +++ b/src/cosmap/dataset/plugins.py @@ -18,7 +18,7 @@ class heinleinPlugin(WorkerPlugin): - def __init__(self, dataset_name): + def __init__(self, dataset_name, **kwargs): self.dataset_name = dataset_name def setup(self, worker): From 028c564cb6cccf99e4c597ed72afb5e74a455d2f Mon Sep 17 00:00:00 2001 From: Patrick Wells Date: Fri, 20 Mar 2026 11:57:29 -0500 Subject: [PATCH 2/2] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6af7d4b..28056cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cosmap" -version = "0.4.0" +version = "0.4.1" description = "" authors = [{ name = "Patrick Wells", email = "patrick@astropatty.com" }] requires-python = ">=3.11,<3.14"