easy-coding-harness 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -614,6 +614,8 @@ def select_tasks(
614
614
  inspection: dict[str, Any],
615
615
  selected_task_ids: Iterable[str],
616
616
  dependency_evidence: dict[str, str] | None = None,
617
+ *,
618
+ allow_pending_hard_dependencies: bool = False,
617
619
  ) -> dict[str, Any]:
618
620
  selected_ids = list(dict.fromkeys(selected_task_ids))
619
621
  if not selected_ids:
@@ -694,7 +696,7 @@ def select_tasks(
694
696
  **({"evidence": evidence} if evidence else {}),
695
697
  }
696
698
  )
697
- if missing_hard:
699
+ if missing_hard and not allow_pending_hard_dependencies:
698
700
  raise EasyDevSpecError(
699
701
  "Selected tasks omit hard dependencies without evidence: " + ", ".join(missing_hard)
700
702
  )