Skip to content

Commit

Permalink
fix in pyinstaller spec
Browse files Browse the repository at this point in the history
  • Loading branch information
spderosso committed May 28, 2019
1 parent ab88661 commit ec9edd1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions gl.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ import os

a = Analysis(['gl.py'],
pathex=[os.getcwd()],
# https://github.com/pyinstaller/pyinstaller/issues/3198
# remove this when dropping support for Python < 3.7
hiddenimports=['_sysconfigdata'],
hiddenimports=[
# https://github.com/pyinstaller/pyinstaller/issues/3198
# remove this when dropping support for Python < 3.7
'_sysconfigdata',
'_cffi_backend'],
hookspath=None,
runtime_hooks=None)

Expand Down

0 comments on commit ec9edd1

Please sign in to comment.