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.
This commit is contained in:
Dion Moult
2026-05-25 15:56:17 +10:00
parent 1c22fa0669
commit 371aabfef6
@@ -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",
)