From 4ade0e55337789694f7b24a0be0e539177ab560e Mon Sep 17 00:00:00 2001 From: Fang Xu Date: Fri, 7 Apr 2023 12:58:56 +0530 Subject: [PATCH] fix wheel_blacklist_extension for macos (#16799) --- src/bindings/python/wheel/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/wheel/setup.py b/src/bindings/python/wheel/setup.py index 3515af49c8fbc9..4e00f24586805f 100644 --- a/src/bindings/python/wheel/setup.py +++ b/src/bindings/python/wheel/setup.py @@ -309,7 +309,7 @@ def get_reallink(self, link_file): def generate_package(self, src_dirs): """Collect package data files from preinstalled dirs and put all runtime libraries to the subpackage.""" # additional blacklist filter, just to fix cmake install issues - blacklist_patterns = ["^.*\\.lib$", "^.*\\.pdb$", "^.*_debug\\.dll$", "^.*_debug\\.dylib$", "^.*_debug\\.so\\.\\d*$", "^.*\\.la$"] + blacklist_patterns = ["^.*\\.lib$", "^.*\\.pdb$", "^.*_debug\\.dll$", "^.*_debug\\.\\d*\\.dylib$", "^.*_debug\\.so\\.\\d*$", "^.*\\.la$"] package_dir = os.path.join(get_package_dir(PY_INSTALL_CFG), WHEEL_LIBS_INSTALL_DIR) for src_dir in src_dirs: