diff --git a/pyproject.toml b/pyproject.toml index f9877cd5..03a09ead 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ namespaces = true # ----------------------------------------- Project Metadata ------------------------------------- # [project] -version = "0.0.0.dev123" +version = "0.0.0.dev124" name = "RepoDynamics" dependencies = [ "packaging >= 23.2, < 24", diff --git a/src/repodynamics/meta/files/forms.py b/src/repodynamics/meta/files/forms.py index c12d821f..4d41e009 100644 --- a/src/repodynamics/meta/files/forms.py +++ b/src/repodynamics/meta/files/forms.py @@ -36,7 +36,7 @@ def issue_forms(self) -> list[tuple[DynamicFile, str]]: info = self._out_db.issue_form(issue["id"], idx + 1) form = { key: val for key, val in issue.items() - if key not in ["id", "primary_commit_id", "body", "pre_process", "post_process"] + if key not in ["id", "primary_commit_id", "sub_type", "body", "pre_process", "post_process"] } labels = form.setdefault("labels", [])