From d3bf2805b46b61ea9c08d07efbfac5a4f0b9ae73 Mon Sep 17 00:00:00 2001 From: Avasam Date: Sun, 17 Dec 2023 16:47:29 -0500 Subject: [PATCH] Bump pyinstaller to 6.3.* (#11175) --- stubs/pyinstaller/@tests/stubtest_allowlist.txt | 4 ---- stubs/pyinstaller/@tests/stubtest_allowlist_darwin.txt | 2 ++ stubs/pyinstaller/@tests/stubtest_allowlist_linux.txt | 2 ++ stubs/pyinstaller/METADATA.toml | 2 +- stubs/pyinstaller/PyInstaller/compat.pyi | 3 --- 5 files changed, 5 insertions(+), 8 deletions(-) create mode 100644 stubs/pyinstaller/@tests/stubtest_allowlist_darwin.txt create mode 100644 stubs/pyinstaller/@tests/stubtest_allowlist_linux.txt diff --git a/stubs/pyinstaller/@tests/stubtest_allowlist.txt b/stubs/pyinstaller/@tests/stubtest_allowlist.txt index 7abb81595..ff3d8caa5 100644 --- a/stubs/pyinstaller/@tests/stubtest_allowlist.txt +++ b/stubs/pyinstaller/@tests/stubtest_allowlist.txt @@ -35,7 +35,6 @@ PyInstaller\.hooks(\.[\w-]+)* # weird hyphens in runtime module names PyInstaller.lib.modulegraph.__main__ PyInstaller.lib.modulegraph.find_modules PyInstaller.lib.modulegraph.util -PyInstaller.lib.modulegraph.zipio PyInstaller\.loader(\.\w+)* PyInstaller.log PyInstaller\.utils\.cliutils(\.\w+)* @@ -53,6 +52,3 @@ PyInstaller.utils.win32.icon PyInstaller.utils.win32.winmanifest PyInstaller.utils.win32.winresource PyInstaller.utils.win32.winutils - -# Module can't be imported at runtime on non-win32 platforms -PyInstaller.utils.win32.versioninfo diff --git a/stubs/pyinstaller/@tests/stubtest_allowlist_darwin.txt b/stubs/pyinstaller/@tests/stubtest_allowlist_darwin.txt new file mode 100644 index 000000000..93e1392cf --- /dev/null +++ b/stubs/pyinstaller/@tests/stubtest_allowlist_darwin.txt @@ -0,0 +1,2 @@ +# Module can't be imported at runtime on non-win32 platforms +PyInstaller.utils.win32.versioninfo diff --git a/stubs/pyinstaller/@tests/stubtest_allowlist_linux.txt b/stubs/pyinstaller/@tests/stubtest_allowlist_linux.txt new file mode 100644 index 000000000..93e1392cf --- /dev/null +++ b/stubs/pyinstaller/@tests/stubtest_allowlist_linux.txt @@ -0,0 +1,2 @@ +# Module can't be imported at runtime on non-win32 platforms +PyInstaller.utils.win32.versioninfo diff --git a/stubs/pyinstaller/METADATA.toml b/stubs/pyinstaller/METADATA.toml index 5dd17423e..c48aa14ae 100644 --- a/stubs/pyinstaller/METADATA.toml +++ b/stubs/pyinstaller/METADATA.toml @@ -1,4 +1,4 @@ -version = "6.2.*" +version = "6.3.*" upstream_repository = "https://github.com/pyinstaller/pyinstaller" requires = ["types-setuptools"] requires_python = ">=3.8" diff --git a/stubs/pyinstaller/PyInstaller/compat.pyi b/stubs/pyinstaller/PyInstaller/compat.pyi index 2ea07f113..092a5f02e 100644 --- a/stubs/pyinstaller/PyInstaller/compat.pyi +++ b/stubs/pyinstaller/PyInstaller/compat.pyi @@ -58,9 +58,6 @@ def exec_command( *cmdargs: str, encoding: str | None = None, raise_enoent: bool | None = None, **kwargs: int | bool | Iterable[int] | None ) -> str: ... def exec_command_rc(*cmdargs: str, **kwargs: float | bool | Iterable[int] | None) -> int: ... -def exec_command_stdout( - *command_args: str, encoding: str | None = None, **kwargs: float | str | bytes | bool | Iterable[int] | None -) -> str: ... def exec_command_all( *cmdargs: str, encoding: str | None = None, **kwargs: int | bool | Iterable[int] | None ) -> tuple[int, str, str]: ...