You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/25 15:14:21 UTC

[incubator-tvm] branch master updated: [Fix] Remove the tvm web from version update (#6122)

This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new cac17f1  [Fix] Remove the tvm web from version update (#6122)
cac17f1 is described below

commit cac17f1caa1fe296836a2e76ed5086d701d8c36d
Author: Haichen Shen <sh...@gmail.com>
AuthorDate: Sat Jul 25 08:14:10 2020 -0700

    [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()