docs: 对齐 README 与实际代码状态, 清理过期文档 — 移除未实现的 YAML 编排特性声明与整章, 修正覆盖率徽章 100%→97%, 修正依赖描述(实际 rich+typer+typing-extensions, 无 PyYAML), 修正 CLI 模块路径(profiler/emlmanager 已迁至 cli/legacy/); 归档 iter-01~05 迭代记录(设计决策已存 project_memory.md), 删除过期重构计划文档; 保留 typing_extensions 守卫(3.12/3.13 前向兼容非 3.8 死代码)
CI / Lint, Typecheck & Test (push) Has been cancelled

This commit is contained in:
2026-07-07 11:11:04 +08:00
parent 505e40012e
commit 8cfdef7516
14 changed files with 102 additions and 741 deletions
+6 -4
View File
@@ -157,10 +157,12 @@ def _make_simple_graph() -> px.Graph:
def task_b(task_a: int) -> int:
return task_a + 1
return px.Graph.from_specs([
px.TaskSpec("task_a", task_a),
px.TaskSpec("task_b", task_b, depends_on=("task_a",)),
])
return px.Graph.from_specs(
[
px.TaskSpec("task_a", task_a),
px.TaskSpec("task_b", task_b, depends_on=("task_a",)),
]
)
def test_run_with_progress_true() -> None: