From d2c33c397ad30f0b0fad7296a3c80d47df0243fe Mon Sep 17 00:00:00 2001 From: liuzhenwei Date: Wed, 29 Oct 2025 12:43:29 +0800 Subject: [PATCH] [NIXL][XPU] update name of nixl wheel (#27631) Signed-off-by: zhenwei-intel --- tools/install_nixl_from_source_ubuntu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install_nixl_from_source_ubuntu.py b/tools/install_nixl_from_source_ubuntu.py index c808b01d2e94b..742aab6b0de75 100644 --- a/tools/install_nixl_from_source_ubuntu.py +++ b/tools/install_nixl_from_source_ubuntu.py @@ -37,7 +37,7 @@ def is_pip_package_installed(package_name): def find_nixl_wheel_in_cache(cache_dir): """Finds a nixl wheel file in the specified cache directory.""" # The repaired wheel will have a 'manylinux' tag, but this glob still works. - search_pattern = os.path.join(cache_dir, "nixl-*.whl") + search_pattern = os.path.join(cache_dir, "nixl*.whl") wheels = glob.glob(search_pattern) if wheels: # Sort to get the most recent/highest version if multiple exist