pip upgrades
This commit is contained in:
parent
fbc5f51a09
commit
6f60b7e8a7
1 changed files with 6 additions and 6 deletions
|
@ -490,9 +490,9 @@ enableAutoUpdateDarwin() {
|
||||||
|
|
||||||
ensurePipUpdated() {
|
ensurePipUpdated() {
|
||||||
### python3.10 pip update
|
### python3.10 pip update
|
||||||
# if command -v python3.10 > /dev/null; then
|
if command -v python3.10 > /dev/null; then
|
||||||
# logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip &
|
logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip &
|
||||||
# fi
|
fi
|
||||||
|
|
||||||
### python3.11 pip update
|
### python3.11 pip update
|
||||||
if command -v python3.11 > /dev/null; then
|
if command -v python3.11 > /dev/null; then
|
||||||
|
@ -500,9 +500,9 @@ ensurePipUpdated() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### python3.12 pip update
|
### python3.12 pip update
|
||||||
if command -v python3.12 > /dev/null; then
|
# if command -v python3.12 > /dev/null; then
|
||||||
logg info 'Ensuring python3.12 pip is updated' && python3.12 -m pip install --upgrade pip &
|
# logg info 'Ensuring python3.12 pip is updated' && python3.12 -m pip install --upgrade pip &
|
||||||
fi
|
# fi
|
||||||
wait
|
wait
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue