mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-25 13:21:11 +08:00
Bump pyinstaller to 6.8.* (#12198)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
version = "6.6.*"
|
||||
version = "6.8.*"
|
||||
upstream_repository = "https://github.com/pyinstaller/pyinstaller"
|
||||
requires = ["types-setuptools"]
|
||||
|
||||
|
||||
@@ -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: ...
|
||||
|
||||
@@ -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),
|
||||
|
||||
@@ -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: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user