From 6f60b7e8a76a98ebad38e9435e4642a0ba991327 Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Mon, 25 Dec 2023 04:35:10 +0000 Subject: [PATCH] pip upgrades --- .../universal/run_after_01-pre-install.sh.tmpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl b/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl index ddb7e9f3..fdc0919e 100644 --- a/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl +++ b/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl @@ -490,9 +490,9 @@ enableAutoUpdateDarwin() { ensurePipUpdated() { ### python3.10 pip update - # if command -v python3.10 > /dev/null; then - # logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip & - # fi + if command -v python3.10 > /dev/null; then + logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip & + fi ### python3.11 pip update if command -v python3.11 > /dev/null; then @@ -500,9 +500,9 @@ ensurePipUpdated() { fi ### python3.12 pip update - if command -v python3.12 > /dev/null; then - logg info 'Ensuring python3.12 pip is updated' && python3.12 -m pip install --upgrade pip & - fi + # if command -v python3.12 > /dev/null; then + # logg info 'Ensuring python3.12 pip is updated' && python3.12 -m pip install --upgrade pip & + # fi wait }