diff --git a/plugins.d/homebrew.sh b/plugins.d/homebrew.sh index 9e5a3e2..97e9417 100755 --- a/plugins.d/homebrew.sh +++ b/plugins.d/homebrew.sh @@ -358,7 +358,8 @@ else if [ "$display_info" = true ]; then - info_cask=$(brew cask info $upd_casks) + #info_cask=$(brew cask info $upd_casks) + info_cask=$(brew info --cask $upd_casks) for i in $upd_casks do @@ -453,7 +454,8 @@ else if [ "$display_info" = true ]; then - info_cask_latest=$(brew cask info $upd_casks_latest) + #info_cask_latest=$(brew cask info $upd_casks_latest) + info_cask_latest=$(brew info --cask $upd_casks_latest) for i in $upd_casks_latest do diff --git a/plugins.d/pip.sh b/plugins.d/pip.sh index 0e955f6..a78f98e 100755 --- a/plugins.d/pip.sh +++ b/plugins.d/pip.sh @@ -6,8 +6,7 @@ # upgrade pip: # python -m pip install --upgrade pip -#export PIP_USE_FEATURE=2020-resolver -#export PIP_USE_FEATURE=fast-deps +# Configurer pip3: # pip config edit ######################################### @@ -38,9 +37,6 @@ fi echo -e "\033[1m🐍 $pip_version (Python 3) \033[0m" -echo "" -echo -e "\033[31mpip use features 2020-resolver & fast-deps for testings. pip 20.3 (10/2020) pip definitively this features.\033[0m" - echo "" $pip_version install --upgrade pip echo "" @@ -140,7 +136,6 @@ if [ -n "$upd" ]; then elif [ "${FOUND}" = "" ]; then echo "$i" | xargs $pip_version install $user --upgrade - #echo "$i" | xargs $pip_version install $user --use-feature=2020-resolver --upgrade fi done