Skip to content

Commit f6199a0

Browse files
committed
Don't just complain. Offer a possible solution.
1 parent dc4361d commit f6199a0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

psij-ci-setup

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,9 @@ check_pip_version() {
296296
PIP_PYTHON_VERSION=`$PIP --version | sed -nE 's/.*\(python\s(.*)\)/\1/p'`
297297

298298
if [ "$PYTHON_VERSION" != "$PIP_PYTHON_VERSION" ]; then
299-
echo -e "\e[33mWarning: The installed $PIP comes from Python $PIP_PYTHON_VERSION while your"
300-
echo -e "Python interpreter has version $PYTHON_VERSION. This is likely to cause problems.\e[0m"
299+
echo -e "\e[33mWarning: The installed $PIP comes from Python $PIP_PYTHON_VERSION while your Python"
300+
echo -e "interpreter has version $PYTHON_VERSION. If this causes problems, please use a "
301+
echo -e "virtual environment.\e[0m"
301302
fi
302303
}
303304

0 commit comments

Comments
 (0)