From 37be39bc69789a7b2cb9415ca61e0ce4209dc666 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 9 Feb 2022 19:11:51 -0500 Subject: packaging: fix the MSI bundling of distutils sub-packages Fixes regression in commit 05b5a1e56fe8f5400b65d0d69680cc6531fe74f8. This added usage of another module in the python module's introspection of `meson.exe runpython`, but the MSI packaging didn't adapt, causing it to fail to be detected due to ImportError. Fixes #9975 --- packaging/createmsi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/createmsi.py b/packaging/createmsi.py index d09fa789f..653caa5ee 100755 --- a/packaging/createmsi.py +++ b/packaging/createmsi.py @@ -72,6 +72,7 @@ def get_more_modules(): 'distutils.version', 'distutils.command.build_ext', 'distutils.command.build', + 'distutils.command.install', 'filecmp', ] -- cgit v1.2.3