From 496d664a5195b0f3a8fd3301ad3aede06ea045ea Mon Sep 17 00:00:00 2001 From: Matthew Murray Date: Mon, 18 Nov 2024 13:26:19 -0800 Subject: [PATCH] clean up --- python/libcudf/libcudf/load.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/python/libcudf/libcudf/load.py b/python/libcudf/libcudf/load.py index 67db2ee8cc2..a91fbb7aecf 100644 --- a/python/libcudf/libcudf/load.py +++ b/python/libcudf/libcudf/load.py @@ -78,13 +78,7 @@ def load_library(): # packaging the wheel), look for a system installation. libcudf_lib = _load_wheel_installation(soname) if libcudf_lib is None: - # libcudf_lib = _load_system_installation(soname) - # libcudf_lib = _load_system_installation(soname) - try: - libcudf_lib = _load_system_installation(soname) - except OSError: - # Hope it's baked into the rpath - return None + libcudf_lib = _load_system_installation(soname) # The caller almost never needs to do anything with this library, but no # harm in offering the option since this object at least provides a handle