From d34f707e53c58d9baa3d72f16d3bb029f5707006 Mon Sep 17 00:00:00 2001 From: Rok Mandeljc Date: Sun, 23 Jul 2023 22:00:55 +0200 Subject: [PATCH] depend: remove missing-lib warning suppresion rule for libshiboken The global missing-lib warning suppression for libshiboken should now be redundant, thanks to the improved missing-lib warning suppression from the preceding commit. --- PyInstaller/depend/dylib.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/PyInstaller/depend/dylib.py b/PyInstaller/depend/dylib.py index 23518643127..9c0a5a175e1 100644 --- a/PyInstaller/depend/dylib.py +++ b/PyInstaller/depend/dylib.py @@ -347,10 +347,6 @@ def include_library(libname): # Patterns for suppressing warnings about missing dynamically linked libraries _warning_suppressions = [ - # We fail to discover shiboken2 (PySide2) and shiboken6 (PySide6) shared libraries due to the way the packages set - # up the search path to the library, which is located in a separate package. Suppress the harmless warnings to avoid - # confusion. - r'(lib)?shiboken.*', ] # On some systems (e.g., openwrt), libc.so might point to ldd. Suppress warnings about it.