Skip to content

Commit 2565677

Browse files
committed
fix: fix pkg import issues for Windows
1 parent 6c9f1b9 commit 2565677

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pkg/py-pkger.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,7 @@ def run_script(self, pathname):
126126
oargs.append(f"--add-data {ori[1:]}{BET}{dest[1:]}")
127127
# 分析动态加载文件中所使用的包
128128
if x[2] == "py":
129-
try:
130-
finder.run_script(x[0])
131-
except:
132-
continue
129+
finder.run_script(x[0])
133130
for name, mod in finder.modules.items():
134131
module = name.split(".")[0] if os.name == "nt" else name
135132
if module[0] == "_" and module[1:] in hiddenImport:

main.py

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
from altfe import bridge, handle
1010
from altfe.interface.root import classRoot
1111

12+
# To fix pyinstaller package issues
13+
from PIL import Image
14+
1215
rootPath = os.path.split(os.path.realpath(sys.argv[0]))[0] + "/"
1316
rootPathFrozen = sys._MEIPASS + "/" if getattr(sys, "frozen", False) else rootPath
1417

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ importlib-metadata==6.7.0
88
itsdangerous==2.1.2
99
Jinja2==3.1.4
1010
MarkupSafe==2.1.5
11-
Pillow==9.5.0
11+
Pillow==10.4.0
1212
pixivpy3==3.7.5
1313
pyparsing==3.1.4
1414
PySocks==1.7.1

0 commit comments

Comments
 (0)