From 371aabfef6b90b3a7a3da523dd2bae3bb77822ea Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 25 May 2026 15:56:17 +1000 Subject: [PATCH] Disable Autodesk connector UPX Build the PyInstaller Autodesk connector without UPX compression. UPX-packed launchers are more likely to trigger enterprise Windows security scanning, and the connector is distributed as a fresh unsigned artifact for each build. Generated with the assistance of an AI coding tool. --- .../packaging/bonsaiviewer-autodesk.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bonsaiviewer-autodesk/packaging/bonsaiviewer-autodesk.spec b/src/bonsaiviewer-autodesk/packaging/bonsaiviewer-autodesk.spec index f221395444..3f88ebf8b0 100644 --- a/src/bonsaiviewer-autodesk/packaging/bonsaiviewer-autodesk.spec +++ b/src/bonsaiviewer-autodesk/packaging/bonsaiviewer-autodesk.spec @@ -60,7 +60,7 @@ exe = EXE( debug=False, bootloader_ignore_signals=False, strip=False, - upx=True, + upx=False, console=True, disable_windowed_traceback=False, argv_emulation=False, @@ -75,7 +75,7 @@ coll = COLLECT( a.zipfiles, a.datas, strip=False, - upx=True, + upx=False, upx_exclude=[], name="bonsaiviewer-autodesk", )