Bump pyinstaller to 6.6.* (#11764)

This commit is contained in:
Avasam
2024-04-14 13:33:06 -04:00
committed by GitHub
parent 1df875b529
commit b9fd082cf7
2 changed files with 3 additions and 2 deletions

View File

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

View File

@@ -1,6 +1,6 @@
from _typeshed import Incomplete, StrPath
from collections.abc import Iterable
from typing import Any
from typing import Any, Literal
from PyInstaller.building import _PyiBlockCipher
from PyInstaller.building.datastruct import Target, _TOCTuple
@@ -39,4 +39,5 @@ class Analysis(Target):
win_private_assemblies: bool = False,
noarchive: bool = False,
module_collection_mode: Incomplete | None = None,
optimize: Literal[-1, 0, 1, 2] | None = -1,
) -> None: ...