mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-16 09:10:35 +03:00
setup.py: Explicitly package asyncio and multiprocessing
We always did before, certainly in 5.2.4, so we should continue to do so, even though newer python and/or py2exe means they're no longer automatically included in library.zip by py2exe.
This commit is contained in:
parent
e152372b3a
commit
25e5ed9c14
2
setup.py
2
setup.py
@ -191,6 +191,8 @@ elif sys.platform == 'win32':
|
||||
'dist_dir': dist_dir,
|
||||
'optimize': 2,
|
||||
'packages': [
|
||||
'asyncio', # No longer auto as of py3.10+py2exe 0.11
|
||||
'multiprocessing', # No longer auto as of py3.10+py2exe 0.11
|
||||
'sqlite3', # Included for plugins
|
||||
'util', # 2022-02-01 only imported in plugins/eddn.py
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user