From 4d789f24addb2a720b5a25bf47266344c9034f59 Mon Sep 17 00:00:00 2001 From: FelixTang7 Date: Wed, 21 Feb 2024 11:00:33 +0800 Subject: [PATCH] =?UTF-8?q?Title=20=E5=8C=85=E5=90=8D=E4=BF=AE=E6=94=B9=20?= =?UTF-8?q?Type:=20=20Feature=20Team:=20PyTorch=5FOps=5FDev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit InventoryUpdate: False Issue: issue_no Description: 包名使用.进行分割 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3a2ca028..fb27eede 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def get_sha(pytorch_root: Union[str, Path]) -> str: except Exception: return "Unknown" -VERSION = "1.0_" + torch.__version__[0:6] +VERSION = "1.0." + torch.__version__[0:6] torch_npu_root = Path(__file__).parent sha = get_sha(torch_npu_root) if not os.getenv("BUILD_WITHOUT_SHA"): -- Gitee