From c5b6a3d6bc7e2b6be323e4b6641a4996fc378495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sun, 4 Jan 2026 19:57:03 +0100 Subject: [PATCH] update-pkg: removed `--break-system-packages` - it is defined in .config/pip.conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .local/bin/Update-pkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/bin/Update-pkg b/.local/bin/Update-pkg index 537f9ce..af6fea3 100755 --- a/.local/bin/Update-pkg +++ b/.local/bin/Update-pkg @@ -31,7 +31,7 @@ else pip="/opt/homebrew/bin/pip$PYTHONVERSION" fi -PIPEXT="--user --force --quiet --break-system-packages --no-warn-script-location" +PIPEXT="--user --force --quiet --no-warn-script-location" PIPEXTPRE="--pre $PIPEXT" # Gentoo release @@ -85,7 +85,7 @@ function command_exists() { function update_pip() { # Update the pip if [[ "$(uname)" == "Darwin" ]]; then - $python -m pip install --upgrade pip --user --no-warn-script-location --break + $python -m pip install --upgrade pip --user --no-warn-script-location elif [[ -f $GENTOO ]]; then $install dev-python/pip fi