Skip to content

Commit b379744

Browse files
authored
Bump pyinstaller to 6.13.* (#13843)
1 parent 45c0e52 commit b379744

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

stubs/pyinstaller/METADATA.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "6.12.*"
1+
version = "6.13.*"
22
upstream_repository = "https://github.com/pyinstaller/pyinstaller"

stubs/pyinstaller/PyInstaller/compat.pyi

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ is_openbsd: Final[bool]
2929
is_hpux: Final[bool]
3030
is_unix: Final[bool]
3131
is_musl: Final[bool]
32+
is_termux: Final[bool]
3233
is_macos_11_compat: Final[bool]
3334
is_macos_11_native: Final[bool]
3435
is_macos_11: Final[bool]

stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def collect_system_data_files(
5252
path: str, destdir: StrPath | None = None, include_py_files: bool = False
5353
) -> list[tuple[str, str]]: ...
5454
def copy_metadata(package_name: str, recursive: bool = False) -> list[tuple[str, str]]: ...
55-
def get_installer(module: str) -> str | None: ...
55+
def get_installer(dist_name: str) -> str | None: ...
5656
def collect_all(
5757
package_name: str,
5858
include_py_files: bool = True,

0 commit comments

Comments
 (0)