Skip to content

Commit

Permalink
fix wheel_blacklist_extension for macos (#16799)
Browse files Browse the repository at this point in the history
  • Loading branch information
xufang-lisa authored Apr 7, 2023
1 parent 06cacfe commit 4ade0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/python/wheel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4ade0e5

Please sign in to comment.