details: https://code.tryton.org/tryton/commit/8b21fc4b7e8f
branch: 7.6
user: Cédric Krier <[email protected]>
date: Sat Feb 14 09:49:11 2026 +0100
description:
Use gui base when building with cx_Freeze
Since cx_Freeze>=7.0, 'Win32GUI' value for base is no more supported.
Closes #14606
(grafted from 8d0759bc0e9a1f3caada64baf51ea67b84e7fca4)
diffstat:
tryton/setup-freeze.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 22c8afb092be -r 8b21fc4b7e8f tryton/setup-freeze.py
--- a/tryton/setup-freeze.py Thu Feb 12 11:14:07 2026 +0100
+++ b/tryton/setup-freeze.py Sat Feb 14 09:49:11 2026 +0100
@@ -141,7 +141,7 @@
},
executables=[Executable(
'bin/tryton',
- base='Win32GUI' if sys.platform == 'win32' else None,
+ base='gui' if sys.platform == 'win32' else None,
icon=os.path.join(
'tryton', 'data', 'pixmaps', 'tryton', 'tryton.ico'),
)])