From 8ca0394eadaf1f7f75906d8951f66c8a8792dba9 Mon Sep 17 00:00:00 2001 From: Samuel T Date: Tue, 25 Oct 2022 09:39:32 -0400 Subject: [PATCH] Bump pyinstaller to 5.6.* (#8981) --- stubs/pyinstaller/METADATA.toml | 2 +- stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) 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]]]: ...