Skip to content

Commit

Permalink
[*] bind compiler and runtiem version to 1.8.10, add maintainer messa…
Browse files Browse the repository at this point in the history
…ge in python wheel
  • Loading branch information
qingyunqu committed Mar 25, 2024
1 parent 1f42069 commit bbb9407
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions compiler/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
version_file = os.path.join(setup_path, "byteir", "version.py")
version = get_byteir_version_and_generate_versoin_file(version_txt, version_file, root_path, dev=False)

maintainer = ""
maintainer_email = ""
maintainer = "ByteIR Team"
maintainer_email = "byteir@bytedance.com"
author = maintainer
author_email = maintainer_email
description = "use byteir python interface"
Expand Down
2 changes: 1 addition & 1 deletion compiler/python/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0.0
1.8.1.0
5 changes: 3 additions & 2 deletions frontends/torch-frontend/torch-frontend/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ def get_torch_frontend_version_and_generate_versoin_file(input_version_txt_path,
version_file = os.path.join(setup_path, "torch_frontend", "version.py")
version = get_torch_frontend_version_and_generate_versoin_file(version_txt, version_file, root_path, dev=False)

maintainer = ""
maintainer_email = ""
maintainer = "ByteIR Team"
maintainer_email = "byteir@bytedance.com"
author = maintainer
author_email = maintainer_email
description = "use torch_frontend python interface"
long_description = """
torch_frontend
usage:
>>> import torch_frontend
>>> import torch_mlir
"""
install_requires = []
license = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion runtime/VERSION_NUMBER
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0.0
1.8.1.0
4 changes: 2 additions & 2 deletions runtime/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def get_version_and_generate_version_file(input_version_txt_path, output_version

version = get_version_and_generate_version_file(version_txt, version_file)

maintainer = ""
maintainer_email = ""
maintainer = "ByteIR Team"
maintainer_email = "byteir@bytedance.com"
author = maintainer
author_email = maintainer_email
description = "brt python interface"
Expand Down

0 comments on commit bbb9407

Please sign in to comment.