From 8d2472bc68da673521352723f66d50dbcb9d13b2 Mon Sep 17 00:00:00 2001 From: Alberto Sottile Date: Fri, 15 Feb 2019 19:37:22 +0100 Subject: [PATCH] buildpy2app: include cffi in the app bundle --- buildPy2app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildPy2app.py b/buildPy2app.py index 8824f67..96f5db0 100755 --- a/buildPy2app.py +++ b/buildPy2app.py @@ -16,7 +16,7 @@ DATA_FILES = [ OPTIONS = { 'iconfile': 'resources/icon.icns', 'extra_scripts': 'syncplayServer.py', - 'includes': {'PySide2.QtCore', 'PySide2.QtUiTools', 'PySide2.QtGui', 'PySide2.QtWidgets', 'certifi'}, + 'includes': {'PySide2.QtCore', 'PySide2.QtUiTools', 'PySide2.QtGui', 'PySide2.QtWidgets', 'certifi', 'cffi'}, 'excludes': {'PySide', 'PySide.QtCore', 'PySide.QtUiTools', 'PySide.QtGui'}, 'qt_plugins': [ 'platforms/libqcocoa.dylib',