File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
packages/flet/src/flet/__pyinstaller Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 88from PyInstaller .building .icon import normalize_icon_type
99from PyInstaller .compat import win32api
1010from PyInstaller .utils .win32 .icon import IconFile , normalize_icon_type
11- from PyInstaller .utils .win32 .versioninfo import decode
11+
12+ try :
13+ # PyInstaller 5.7.0
14+ from PyInstaller .utils .win32 .versioninfo import decode
15+ except ImportError :
16+ # PyInstaller 5.8.0
17+ from PyInstaller .utils .misc import decode
1218
1319
1420def update_flet_view_icon (exe_path , icon_path ):
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ pytest = "^7.2.0"
1515black = " ^22.12.0"
1616tomlkit = " ^0.11.6"
1717cryptography = " ^39.0.0"
18- pyinstaller = " ^5.7 .0"
18+ pyinstaller = " ^5.8 .0"
1919pillow = " ^9.4.0"
2020pre-commit = " ^2.21.0"
2121
You can’t perform that action at this time.
0 commit comments