From f0b1b62e79afb3512b532c865cdcd868b18cfbf7 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 18 Sep 2024 15:22:15 -0400 Subject: [PATCH] [no ci] comment out pyinstaller spec debug output for now --- src/gam.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gam.spec b/src/gam.spec index a548442f..d0eac6bd 100644 --- a/src/gam.spec +++ b/src/gam.spec @@ -37,12 +37,12 @@ a = Analysis( cipher=None, noarchive=False, ) -print(f"datas from analysis:\n{a.datas}") +#print(f"datas from analysis:\n{a.datas}") for d in a.datas: if 'pyconfig' in d[0]: a.datas.remove(d) break -print(f"datas after pyconfig cleanup:\n{a.datas}") +#print(f"datas after pyconfig cleanup:\n{a.datas}") pyz = PYZ(a.pure, a.zipped_data, cipher=None)