From ad7e14ed44d3534dd46d513ff184364e6127becb Mon Sep 17 00:00:00 2001 From: jixuan-chen Date: Thu, 23 Jul 2026 12:27:29 +0200 Subject: [PATCH] Fix tqdm crash (#116): route TARGET progress through QgsProcessingFeedback Requires target-py>=0.2.0. --- processor/target_algorithm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/processor/target_algorithm.py b/processor/target_algorithm.py index 35f618f..8cd3879 100644 --- a/processor/target_algorithm.py +++ b/processor/target_algorithm.py @@ -332,6 +332,7 @@ def processAlgorithm(self, parameters, context, feedback): # passing the simulation's config file os.path.join(inputDir, "config.ini"), progress=True, # show progress bars in console + feedback=feedback, # route progress to the QGIS progress bar instead ) tar.load_config()