mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 04:45:16 +00:00
fix warning in windows builds
This commit is contained in:
parent
cbeaa52101
commit
1899f1f0df
1 changed files with 6 additions and 0 deletions
|
@ -60,6 +60,12 @@ a.datas += extra_datas(home+'lib')
|
||||||
a.datas += extra_datas(home+'plugins')
|
a.datas += extra_datas(home+'plugins')
|
||||||
a.datas += extra_datas(home+'packages')
|
a.datas += extra_datas(home+'packages')
|
||||||
|
|
||||||
|
# http://stackoverflow.com/questions/19055089/pyinstaller-onefile-warning-pyconfig-h-when-importing-scipy-or-scipy-signal
|
||||||
|
for d in a.datas:
|
||||||
|
if 'pyconfig' in d[0]:
|
||||||
|
a.datas.remove(d)
|
||||||
|
break
|
||||||
|
|
||||||
pyz = PYZ(a.pure)
|
pyz = PYZ(a.pure)
|
||||||
exe = EXE(pyz,
|
exe = EXE(pyz,
|
||||||
a.scripts,
|
a.scripts,
|
||||||
|
|
Loading…
Add table
Reference in a new issue