From cac17f1caa1fe296836a2e76ed5086d701d8c36d Mon Sep 17 00:00:00 2001 From: Haichen Shen Date: Sat, 25 Jul 2020 08:14:10 -0700 Subject: [PATCH] [Fix] Remove the tvm web from version update (#6122) --- version.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/version.py b/version.py index 4078d8a..015ee24 100644 --- a/version.py +++ b/version.py @@ -22,7 +22,6 @@ This script runs and update all the locations that related to versions List of affected files: - tvm-root/python/tvm/_ffi/libinfo.py - tvm-root/include/tvm/runtime/c_runtime_api.h -- tvm-root/web/tvm_runtime.js - tvm-root/conda/tvm/meta.yaml - tvm-root/conda/tvm-libs/meta.yaml """ @@ -72,9 +71,6 @@ def main(): for path in ["tvm", "tvm-libs"]: update(os.path.join(proj_root, "conda", path, "meta.yaml"), "(?<=version = \")[.0-9a-z]+", __version__) - # web - update(os.path.join(proj_root, "web", "tvm_runtime.js"), - "(?<=@version )[.0-9a-z]+", __version__) if __name__ == "__main__": main() -- 2.7.4