mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
+8
-4
@@ -6,13 +6,17 @@ PYTHON_VERSION=$(cat runtime.txt)
|
||||
|
||||
if [[ $PYTHON_VERSION =~ ^python-2 ]]; then
|
||||
if [[ "$PYTHON_VERSION" != "$LATEST_2" ]]; then
|
||||
puts-warn "The latest version of Python 2 is $LATEST_2 (you are using $PYTHON_VERSION). \n We recommend upgrading by specifying the latest version."
|
||||
echo " Learn More: \n https://devcenter.heroku.com/articles/python-runtimes"
|
||||
puts-warn "The latest version of Python 2 is $LATEST_2 (you are using $PYTHON_VERSION)."
|
||||
puts-warn "We recommend upgrading by specifying the latest version."
|
||||
echo " Learn More:"
|
||||
echo " https://devcenter.heroku.com/articles/python-runtimes"
|
||||
fi
|
||||
else
|
||||
if [[ "$PYTHON_VERSION" != "$LATEST_3" ]]; then
|
||||
puts-warn "The latest version of Python 3 is $LATEST_3 (you are using $PYTHON_VERSION). \n We recommend upgrading by specifying the latest version."
|
||||
echo " Learn More: \n https://devcenter.heroku.com/articles/python-runtimes"
|
||||
puts-warn "The latest version of Python 3 is $LATEST_3 (you are using $PYTHON_VERSION)."
|
||||
puts-warn "We recommend upgrading by specifying the latest version."
|
||||
echo " Learn More:"
|
||||
echo " https://devcenter.heroku.com/articles/python-runtimes"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user