Skip to content

Commit ec9edd1

Browse files
committed
fix in pyinstaller spec
1 parent ab88661 commit ec9edd1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

gl.spec

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ 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'],
6+
hiddenimports=[
7+
# https://github.com/pyinstaller/pyinstaller/issues/3198
8+
# remove this when dropping support for Python < 3.7
9+
'_sysconfigdata',
10+
'_cffi_backend'],
911
hookspath=None,
1012
runtime_hooks=None)
1113

0 commit comments

Comments
 (0)