From b11b28e9a9cce90df45eaa7f22be5105a59db2b6 Mon Sep 17 00:00:00 2001 From: Shaojun Liu <61072813+liu-shaojun@users.noreply.github.com> Date: Tue, 27 Aug 2024 13:10:13 +0800 Subject: [PATCH] update CORE_XE_VERSION to 2.6.0 (#11929) --- python/llm/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/llm/setup.py b/python/llm/setup.py index 502515c5..1eca7b27 100644 --- a/python/llm/setup.py +++ b/python/llm/setup.py @@ -46,7 +46,7 @@ exclude_patterns = ["*__pycache__*", "*ipynb_checkpoints*"] IPEX_LLM_PYTHON_HOME = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) VERSION = open(os.path.join(IPEX_LLM_PYTHON_HOME, './llm/version.txt'), 'r').read().strip() -CORE_XE_VERSION = VERSION.replace("2.2.0", "2.5.0") +CORE_XE_VERSION = VERSION.replace("2.2.0", "2.6.0") llm_home = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src") github_artifact_dir = os.path.join(llm_home, '../llm-binary') libs_dir = os.path.join(llm_home, "ipex_llm", "libs")