1
0
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:
Athanasius 2022-02-15 15:07:04 +00:00
parent e152372b3a
commit 25e5ed9c14
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D

View File

@ -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
],