From 5bf95cb065289792a0450a2bc152dd692c776d56 Mon Sep 17 00:00:00 2001 From: CroneKorkN Date: Sun, 10 May 2026 18:56:30 +0200 Subject: [PATCH] left4me: drop pip_install from pip_upgrade triggers (pip_install now always-runs) --- bundles/left4me/items.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/left4me/items.py b/bundles/left4me/items.py index 44faf52..26ba38d 100644 --- a/bundles/left4me/items.py +++ b/bundles/left4me/items.py @@ -175,9 +175,9 @@ actions['left4me_pip_upgrade'] = { 'needs': [ 'pkg_apt:python3-pip', ], - 'triggers': [ - 'action:left4me_pip_install', - ], + # No triggers — pip_install runs on every apply (gated by `unless`) + # rather than being chained from here. Keeps pip_upgrade scoped to + # exactly its purpose. } actions['left4me_pip_install'] = {