Skip to content

Commit b5e88c0

Browse files
committed
fix pyinstaller issue
1 parent 9d1e289 commit b5e88c0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

gl.spec

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ import os
33

44
a = Analysis(['gl.py'],
55
pathex=[os.getcwd()],
6+
# https://github.com/pyinstaller/pyinstaller/issues/3198
7+
# remove this when dropping support for Python < 3.7
8+
hiddenimports=['_sysconfigdata'],
69
hookspath=None,
710
runtime_hooks=None)
811

0 commit comments

Comments
 (0)