Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
[update_lib] _pyio deps
  • Loading branch information
youknowone committed Feb 13, 2026
commit 190cecd7c8cf9b39b25b15608fb2e2574b152b4b
2 changes: 1 addition & 1 deletion scripts/update_lib/cmd_quick.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def main(argv: list[str] | None = None) -> int:
# Collect hard dependencies for commit
lib_deps = DEPENDENCIES.get(module_name, {})
for dep_name in lib_deps.get("hard_deps", []):
dep_lib_path = construct_lib_path("Lib", dep_name)
dep_lib_path = pathlib.Path("crates/pylib/Lib") / dep_name
Comment thread
youknowone marked this conversation as resolved.
Outdated
if dep_lib_path.exists():
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
hard_deps_for_commit.append(dep_lib_path)

Expand Down
1 change: 1 addition & 0 deletions scripts/update_lib/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ def clear_import_graph_caches() -> None:
],
},
"io": {
"hard_deps": ["_pyio.py"],
"test": [
"test_io.py",
"test_bufio.py",
Expand Down