diff --git a/EDMarketConnector.wxs b/EDMarketConnector.wxs index 9d7077e2..50890764 100644 --- a/EDMarketConnector.wxs +++ b/EDMarketConnector.wxs @@ -104,7 +104,7 @@ - + diff --git a/py2exe.cmd b/py2exe.cmd index 0d01b7a7..b0205282 100755 --- a/py2exe.cmd +++ b/py2exe.cmd @@ -1,2 +1,2 @@ @REM http://www.py2exe.org/index.cgi/OptimizedBytecode -"C:\Program Files (x86)\Python27\python.exe" -OO setup.py py2exe +"C:\Program Files (x86)\Python37-32\python.exe" -OO setup.py py2exe diff --git a/setup.py b/setup.py index 0613b449..6df7975d 100755 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ if sys.platform=='darwin': 'optimize': 2, 'packages': [ 'requests', 'keyring.backends' ], 'frameworks': [ 'Sparkle.framework' ], - 'excludes': [ 'distutils', 'iniparse', '_markerlib', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ], + 'excludes': [ 'distutils', '_markerlib', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ], 'iconfile': '%s.icns' % APPNAME, 'include_plugins': [('plugins', x) for x in PLUGINS], 'resources': [ 'commodity.csv', 'rare_commodity.csv', 'snd_good.wav', 'snd_bad.wav', 'modules.p', 'ships.p', 'stations.p', 'systems.p'], @@ -113,7 +113,7 @@ elif sys.platform=='win32': 'shutil', # Included for plugins 'zipfile', # Included for plugins ], - 'excludes': [ 'distutils', 'iniparse', '_markerlib', 'optparse', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ], + 'excludes': [ 'distutils', '_markerlib', 'optparse', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ], } }