diff --git a/stubs/pyinstaller/METADATA.toml b/stubs/pyinstaller/METADATA.toml index 927a5b1a7..4a5c58124 100644 --- a/stubs/pyinstaller/METADATA.toml +++ b/stubs/pyinstaller/METADATA.toml @@ -1,4 +1,4 @@ -version = "5.5.*" +version = "5.6.*" requires = ["types-setuptools"] [tool.stubtest] diff --git a/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi b/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi index ef8d90534..08623c7d4 100644 --- a/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi +++ b/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi @@ -75,3 +75,9 @@ def include_or_exclude_file( include_list: Iterable[StrOrBytesPath] | None = ..., exclude_list: Iterable[StrOrBytesPath] | None = ..., ) -> bool: ... +def collect_delvewheel_libs_directory( + package_name: str, + libdir_name: StrPath | None = ..., + datas: list[tuple[str, str]] | None = ..., + binaries: list[tuple[str, str]] | None = ..., +) -> tuple[list[tuple[str, str]], list[tuple[str, str]]]: ...