From 731876d6e84f79b58f701782979a4bc00bdb0a8e Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco <icordasco@heroku.com> Date: Tue, 10 Jul 2018 07:38:31 -0500 Subject: [PATCH] Be clearer in our warnings about which Py3 we mean --- bin/steps/python | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/steps/python b/bin/steps/python index 77df5909..58d60436 100755 --- a/bin/steps/python +++ b/bin/steps/python @@ -15,12 +15,12 @@ if [[ $PYTHON_VERSION =~ ^python-2 ]]; then fi else if [[ $PYTHON_VERSION =~ ^python-3.7 ]] && [[ "$PYTHON_VERSION" != "$LATEST_37" ]]; then - puts-warn "The latest version of Python 3 is $LATEST_37 (you are using $PYTHON_VERSION, which is unsupported)." + puts-warn "The latest version of Python 3.7 is $LATEST_37 (you are using $PYTHON_VERSION, which is unsupported)." puts-warn "We recommend upgrading by specifying the latest version ($LATEST_37)." echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes" else if [[ "$PYTHON_VERSION" != "$LATEST_36" ]]; then - puts-warn "The latest version of Python 3 is $LATEST_36 (you are using $PYTHON_VERSION, which is unsupported)." + puts-warn "The latest version of Python 3.6 is $LATEST_36 (you are using $PYTHON_VERSION, which is unsupported)." puts-warn "We recommend upgrading by specifying the latest version ($LATEST_36)." echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes" fi -- GitLab