Bump PyInstaller to 5.11.* (#10179)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Nikita Sobolev
2023-05-14 13:52:19 +03:00
committed by GitHub
parent 9c212cdf5c
commit aa36289684
3 changed files with 6 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
version = "5.10.*"
version = "5.11.*"
requires = ["types-setuptools"]

View File

@@ -41,3 +41,6 @@ class Tree(Target, TOC):
typecode: _TypeCode = "DATA",
) -> None: ...
def assemble(self) -> None: ...
def normalize_toc(toc: Iterable[_TOCTuple]) -> list[_TOCTuple]: ...
def normalize_pyz_toc(toc: Iterable[_TOCTuple]) -> list[_TOCTuple]: ...

View File

@@ -63,8 +63,8 @@ class PostGraphAPI:
def imports(self) -> Generator[Package, None, None]: ...
def add_imports(self, *module_names: str) -> None: ...
def del_imports(self, *module_names: str) -> None: ...
def add_binaries(self, list_of_tuples: TOC | Iterable[tuple[StrOrBytesPath, StrOrBytesPath]]) -> None: ...
def add_datas(self, list_of_tuples: TOC | Iterable[tuple[StrOrBytesPath, StrOrBytesPath]]) -> None: ...
def add_binaries(self, binaries: TOC | Iterable[tuple[StrOrBytesPath, StrOrBytesPath]]) -> None: ...
def add_datas(self, datas: TOC | Iterable[tuple[StrOrBytesPath, StrOrBytesPath]]) -> None: ...
def set_module_collection_mode(
self, name: str | None, mode: Literal["pyz", "pyc", "py", "pyz+py", "py+pyz", None]
) -> None: ...