Bump pyinstaller to 6.8.* (#12198)

This commit is contained in:
Avasam
2024-06-25 06:27:35 -04:00
committed by GitHub
parent 1dbf21fa8b
commit bf03f9b63a
4 changed files with 4 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
version = "6.6.*"
version = "6.8.*"
upstream_repository = "https://github.com/pyinstaller/pyinstaller"
requires = ["types-setuptools"]

View File

@@ -9,3 +9,4 @@ _PyIConfig: TypeAlias = (
# https://pyinstaller.org/en/stable/usage.html#running-pyinstaller-from-python-code
def run(pyi_args: Iterable[str] | None = None, pyi_config: _PyIConfig | None = None) -> None: ...
def check_unsafe_privileges() -> None: ...

View File

@@ -12,7 +12,6 @@ class Splash(Target):
name: Incomplete
script_name: Incomplete
minify_script: Incomplete
rundir: Incomplete
max_img_size: Incomplete
text_pos: Incomplete
text_size: Incomplete
@@ -37,7 +36,6 @@ class Splash(Target):
text_default: str = "Initializing",
full_tk: bool = False,
minify_script: bool = True,
rundir: str = "__splash",
name: str = ...,
script_name: str = ...,
max_img_size: tuple[int, int] | None = (760, 480),

View File

@@ -1,8 +1,8 @@
# https://pyinstaller.org/en/stable/hooks.html#module-PyInstaller.compat
from _typeshed import FileDescriptorOrPath, GenericPath
from _typeshed import FileDescriptorOrPath
from collections.abc import Iterable
from types import ModuleType
from typing import AnyStr, Final, Literal, overload
from typing import Final, Literal, overload
strict_collect_mode: bool
is_64bits: Final[bool]
@@ -65,7 +65,6 @@ def exec_command_all(
) -> tuple[int, str, str]: ...
def exec_python(*args: str, **kwargs: str | None) -> str: ...
def exec_python_rc(*args: str, **kwargs: str | None) -> int: ...
def expand_path(path: GenericPath[AnyStr]) -> AnyStr: ...
def getsitepackages(prefixes: Iterable[str] | None = None) -> list[str]: ...
def importlib_load_source(name: str, pathname: str) -> ModuleType: ...