[no ci] comment out pyinstaller spec debug output for now

This commit is contained in:
Jay Lee
2024-09-18 15:22:15 -04:00
committed by GitHub
parent 7606a40a58
commit f0b1b62e79

View File

@@ -37,12 +37,12 @@ a = Analysis(
cipher=None, cipher=None,
noarchive=False, noarchive=False,
) )
print(f"datas from analysis:\n{a.datas}") #print(f"datas from analysis:\n{a.datas}")
for d in a.datas: for d in a.datas:
if 'pyconfig' in d[0]: if 'pyconfig' in d[0]:
a.datas.remove(d) a.datas.remove(d)
break break
print(f"datas after pyconfig cleanup:\n{a.datas}") #print(f"datas after pyconfig cleanup:\n{a.datas}")
pyz = PYZ(a.pure, pyz = PYZ(a.pure,
a.zipped_data, a.zipped_data,
cipher=None) cipher=None)