From 25e5ed9c14719cb63407f3753ca6c32603650afd Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 15 Feb 2022 15:07:04 +0000 Subject: [PATCH] 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. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 57383fe7..22975678 100755 --- a/setup.py +++ b/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 ],