From 0437a6e84fe863b9c7a8dbf3d581b3db796d1e97 Mon Sep 17 00:00:00 2001 From: Casey Faist <caseylfaist@gmail.com> Date: Thu, 15 Nov 2018 09:37:43 -0600 Subject: [PATCH] update latest python 2 in pipenv-version step --- bin/steps/pipenv-python-version | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/steps/pipenv-python-version b/bin/steps/pipenv-python-version index c8ee06db..dcdf3c26 100755 --- a/bin/steps/pipenv-python-version +++ b/bin/steps/pipenv-python-version @@ -19,7 +19,7 @@ if [[ -f $BUILD_DIR/Pipfile ]]; then if [[ "$PYTHON" == "null" ]]; then PYTHON=$(jq -r '._meta.requires.python_version' "$BUILD_DIR/Pipfile.lock") if [ "$PYTHON" = 2.7 ]; then - echo "$LATEST_2" > "$BUILD_DIR/runtime.txt" + echo "$LATEST_27" > "$BUILD_DIR/runtime.txt" fi if [ "$PYTHON" = 3.6 ]; then echo "$LATEST_36" > "$BUILD_DIR/runtime.txt" @@ -33,4 +33,3 @@ if [[ -f $BUILD_DIR/Pipfile ]]; then fi fi fi - -- GitLab