From 7223b49652a4aaefea570561fe287ac1ef7af48e Mon Sep 17 00:00:00 2001 From: Alberto Sottile Date: Mon, 22 Aug 2022 00:23:40 +0200 Subject: [PATCH] buildPy2app: explicitely exclude tkinter --- buildPy2app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildPy2app.py b/buildPy2app.py index 44f584e..76be1de 100755 --- a/buildPy2app.py +++ b/buildPy2app.py @@ -18,7 +18,7 @@ OPTIONS = { 'iconfile': 'syncplay/resources/icon.icns', 'extra_scripts': 'syncplayServer.py', 'includes': {'PySide2.QtCore', 'PySide2.QtUiTools', 'PySide2.QtGui', 'PySide2.QtWidgets', 'certifi', 'cffi'}, - 'excludes': {'PySide', 'PySide.QtCore', 'PySide.QtUiTools', 'PySide.QtGui'}, + 'excludes': {'PySide', 'PySide.QtCore', 'PySide.QtUiTools', 'PySide.QtGui', 'tkinter'}, 'qt_plugins': [ 'platforms/libqcocoa.dylib', 'platforms/libqminimal.dylib',