From ade80534303074b5fa868e6c4c39aa665a773de6 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sat, 5 Apr 2025 21:30:42 +0200 Subject: [PATCH] Deactivated update-python because it breaks the system packages --- roles/update-pip/tasks/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/roles/update-pip/tasks/main.yml b/roles/update-pip/tasks/main.yml index 3b985ff4..f70baa78 100644 --- a/roles/update-pip/tasks/main.yml +++ b/roles/update-pip/tasks/main.yml @@ -1,4 +1,7 @@ -- name: Update all local pip packages - shell: 'pip freeze --local | grep -v "^\-e" | cut -d = -f 1 | xargs -n1 pip install -U --break-system-packages' - args: - executable: /bin/bash \ No newline at end of file +# Deactivated due to that it breaks the system +# There is no alternative to do the python update +# +#- name: Update all local pip packages +# shell: 'pip freeze --local | grep -v "^\-e" | cut -d = -f 1 | xargs -n1 pip install -U --break-system-packages' +# args: +# executable: /bin/bash \ No newline at end of file