From c07ebd5249904cc66393b33ab1e3d92e29ec3da5 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 11 May 2023 08:52:27 +0200 Subject: create_wheels.py: Fix a bug in plugin code Amends abcc61de2829b2ac191bf334005a3c10a68cbe2f. Pick-to: 6.5 Change-Id: Ia1226b219c4092f315fe9e3c2e236b54e6b8280b Reviewed-by: Adrian Herrmann Reviewed-by: Christian Tismer --- build_scripts/wheel_files.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'build_scripts/wheel_files.py') diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py index e5bc63688..3a2015609 100644 --- a/build_scripts/wheel_files.py +++ b/build_scripts/wheel_files.py @@ -495,7 +495,8 @@ def module_QtQml() -> ModuleData: ] data.lib.append("libpyside6qml") - data.plugins = get_module_json_data("Qml") + json_data = get_module_json_data("Qml") + data.plugins = get_module_plugins(json_data) data.translations.append("qtdeclarative_*") if sys.platform == "win32": data.extra_files.append("pyside6qml.*.lib") @@ -609,7 +610,8 @@ def module_QtSvgWidgets() -> ModuleData: def module_QtTextToSpeech() -> ModuleData: data = ModuleData("TextToSpeech") - data.plugins = get_module_json_data("TextToSpeech") + json_data = get_module_json_data("TextToSpeech") + data.plugins = get_module_plugins(json_data) return data -- cgit v1.2.3