We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb7ea62 commit 19da1ccCopy full SHA for 19da1cc
tools/install_nixl_from_source_ubuntu.py
@@ -37,7 +37,7 @@ def is_pip_package_installed(package_name):
37
def find_nixl_wheel_in_cache(cache_dir):
38
"""Finds a nixl wheel file in the specified cache directory."""
39
# The repaired wheel will have a 'manylinux' tag, but this glob still works.
40
- search_pattern = os.path.join(cache_dir, "nixl-*.whl")
+ search_pattern = os.path.join(cache_dir, "nixl*.whl")
41
wheels = glob.glob(search_pattern)
42
if wheels:
43
# Sort to get the most recent/highest version if multiple exist
0 commit comments