From aa8d889ab2c4041f76c13c77736b5ecc7a5e886e Mon Sep 17 00:00:00 2001 From: Sambhav Kothari Date: Thu, 2 Feb 2017 01:11:40 +0530 Subject: [PATCH] Remove sockets from py2exe exclude list --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 94222976c..895abb028 100755 --- a/setup.py +++ b/setup.py @@ -43,8 +43,11 @@ py2app_exclude_modules = [ 'PyQt4.QtTest', 'PyQt4.QtWebKit', 'PyQt4.QtXml', 'PyQt4.QtXmlPatterns', 'PyQt4.phonon' ] +# sockets module, however not excluded from py2exe should not be used in Picard. Instead +# the QtNetwork module should be used. sockets module was removed from the excluded list +# to support bundled plugins on platforms it is not available. py2exe_exclude_modules = [ - 'socket', 'select', + 'select', ] exclude_modules = [