Unverified Commit d2c33c39 authored by liuzhenwei's avatar liuzhenwei Committed by GitHub
Browse files

[NIXL][XPU] update name of nixl wheel (#27631)


Signed-off-by: default avatarzhenwei-intel <zhenwei.liu@intel.com>
parent f6d5f588
...@@ -37,7 +37,7 @@ def is_pip_package_installed(package_name): ...@@ -37,7 +37,7 @@ def is_pip_package_installed(package_name):
def find_nixl_wheel_in_cache(cache_dir): def find_nixl_wheel_in_cache(cache_dir):
"""Finds a nixl wheel file in the specified cache directory.""" """Finds a nixl wheel file in the specified cache directory."""
# The repaired wheel will have a 'manylinux' tag, but this glob still works. # 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) wheels = glob.glob(search_pattern)
if wheels: if wheels:
# Sort to get the most recent/highest version if multiple exist # Sort to get the most recent/highest version if multiple exist
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment