()
| 102 | |
| 103 | |
| 104 | def main(): |
| 105 | args = parse_args() |
| 106 | oldtag = get_makefile_envs()["PYODIDE_EMSCRIPTEN_VERSION"] |
| 107 | newtag = args.newtag |
| 108 | if not newtag: |
| 109 | major, minor, patch = (int(x) for x in oldtag.split(".")) |
| 110 | patch += 1 |
| 111 | newtag = f"{major}.{minor}.{patch}" |
| 112 | print("Using new version", newtag) |
| 113 | setup_emscripten(oldtag) |
| 114 | rebase(oldtag, newtag) |
| 115 | update_patches(newtag) |
| 116 | update_makefile_envs(oldtag, newtag) |
| 117 | update_struct_info() |
| 118 | commit(newtag) |
| 119 | |
| 120 | |
| 121 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…