MCPcopy
hub / github.com/pyodide/pyodide / commit

Function commit

tools/update_emscripten.py:84–95  ·  view source on GitHub ↗
(newtag)

Source from the content-addressed store, hash-verified

82
83
84def commit(newtag) -> None:
85 paths_to_commit = [
86 "emsdk/patches",
87 "Makefile.envs",
88 "src/js/struct_info_generated.json",
89 ]
90 run(["git", "switch", "-c", f"emscripten-{newtag}"], cwd=PYODIDE_ROOT)
91 run(
92 ["git", "add", *paths_to_commit],
93 cwd=PYODIDE_ROOT,
94 )
95 run(["git", "commit", "-m", f"Emscripten {newtag}"], cwd=PYODIDE_ROOT)
96
97
98def parse_args():

Callers 1

mainFunction · 0.70

Calls 1

runFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…