From bbb9407cf0ad2ff87a413ae07da5b0051c4f4866 Mon Sep 17 00:00:00 2001 From: LiuYuanqiang Date: Mon, 25 Mar 2024 22:56:22 +0800 Subject: [PATCH] [*] bind compiler and runtiem version to 1.8.10, add maintainer message in python wheel --- compiler/python/setup.py | 4 ++-- compiler/python/version.txt | 2 +- frontends/torch-frontend/torch-frontend/python/setup.py | 5 +++-- runtime/VERSION_NUMBER | 2 +- runtime/python/setup.py | 4 ++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/compiler/python/setup.py b/compiler/python/setup.py index 523b04208..4ad217e87 100644 --- a/compiler/python/setup.py +++ b/compiler/python/setup.py @@ -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" diff --git a/compiler/python/version.txt b/compiler/python/version.txt index 571adb261..3dc8df9fc 100644 --- a/compiler/python/version.txt +++ b/compiler/python/version.txt @@ -1 +1 @@ -1.8.0.0 \ No newline at end of file +1.8.1.0 \ No newline at end of file diff --git a/frontends/torch-frontend/torch-frontend/python/setup.py b/frontends/torch-frontend/torch-frontend/python/setup.py index a5f2ec2d9..dbbf357b9 100644 --- a/frontends/torch-frontend/torch-frontend/python/setup.py +++ b/frontends/torch-frontend/torch-frontend/python/setup.py @@ -37,8 +37,8 @@ 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" @@ -46,6 +46,7 @@ def get_torch_frontend_version_and_generate_versoin_file(input_version_txt_path, torch_frontend usage: >>> import torch_frontend +>>> import torch_mlir """ install_requires = [] license = "LICENSE" diff --git a/runtime/VERSION_NUMBER b/runtime/VERSION_NUMBER index 0faf9f756..ee8547f31 100644 --- a/runtime/VERSION_NUMBER +++ b/runtime/VERSION_NUMBER @@ -1 +1 @@ -1.8.0.0 +1.8.1.0 diff --git a/runtime/python/setup.py b/runtime/python/setup.py index 95d371314..e6fc3f79d 100644 --- a/runtime/python/setup.py +++ b/runtime/python/setup.py @@ -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"