From fad4690200bb7c1e477b84332a39991b34ff363c Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 17 Jan 2023 18:14:29 +0000 Subject: [PATCH] Build-exe: pkg_resources now has .vendor/platformdirs as well For now we can manually add this to `packages`. Will open an issue with py2exe. --- Build-exe-and-msi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Build-exe-and-msi.py b/Build-exe-and-msi.py index 33f95a5b..bc0ec600 100644 --- a/Build-exe-and-msi.py +++ b/Build-exe-and-msi.py @@ -84,6 +84,7 @@ OPTIONS = { 'packages': [ 'asyncio', # No longer auto as of py3.10+py2exe 0.11 'multiprocessing', # No longer auto as of py3.10+py2exe 0.11 + 'pkg_resources._vendor.platformdirs', # Necessary 2023-01-17 'sqlite3', # Included for plugins 'util', # 2022-02-01 only imported in plugins/eddn.py ],