Remove sockets from py2exe exclude list

This commit is contained in:
Sambhav Kothari
2017-02-02 01:11:40 +05:30
committed by GitHub
parent 7075b1935f
commit aa8d889ab2

View File

@@ -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 = [