File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
npm-virtualenv-uwsgi-test-app Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ packages=("pip" "setuptools" "wheel")
1313for pkg in ${packages[@]} ; do
1414 # grep returns exit code 1 if the output contains only one line starting
1515 # with "Requirement already …" which means that the package is updated
16- python -m pip install -U --no-deps --no-python-version-warning $pkg 2>&1 | grep -Ev " ^Requirement already (up-to-date|satisfied): "
16+ python -m pip install -U --no-deps $pkg 2>&1 | grep -Ev " ^Requirement already (up-to-date|satisfied): "
1717 if [ $? -eq 0 ]; then
1818 echo " ERROR: Failed to upgrade '$pkg ' to the latest version."
1919 echo " Output of the pip install command is:"
20- python -m pip install -U --no-deps --no-python-version-warning $pkg
20+ python -m pip install -U --no-deps $pkg
2121 exit 1
2222 fi
2323done
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ packages=("pip" "setuptools" "wheel")
2222for pkg in ${packages[@]} ; do
2323 # grep returns exit code 1 if the output contains only one line starting
2424 # with "Requirement already …" which means that the package is updated
25- python -m pip install -U --no-deps --no-python-version-warning $pkg 2>&1 | grep -Ev " ^Requirement already (up-to-date|satisfied): "
25+ python -m pip install -U --no-deps $pkg 2>&1 | grep -Ev " ^Requirement already (up-to-date|satisfied): "
2626 if [ $? -eq 0 ]; then
2727 echo " ERROR: Failed to upgrade '$pkg ' to the latest version."
2828 exit 1
You can’t perform that action at this time.
0 commit comments