From df083fd3b8923979ffb38da06575c460163fc0cd Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Fri, 2 Mar 2018 18:38:21 -0500
Subject: [PATCH] Update pipenv-python-version to latest python 3.6 (#644)

* Update pipenv-python-version

* use latest versions in pipenv script

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>

* Update pipenv-python-version

* 3.6.4

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
---
 CHANGELOG.md                    | 5 ++++-
 bin/steps/pipenv-python-version | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 65cd7ddc..76c085f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,10 @@
 
 # 125
 
-Set `PYTHONPATH` during collectstatic runs.
+Set `PYTHONPATH` during collectstatic runs, other updates.
+
+- Update Set `PYTHONPATH` during collectstatic runs.
+- Update Pipenv "3.6" to "3.6.4".
 
 # 124
 
diff --git a/bin/steps/pipenv-python-version b/bin/steps/pipenv-python-version
index caf11840..d8f6f16f 100755
--- a/bin/steps/pipenv-python-version
+++ b/bin/steps/pipenv-python-version
@@ -19,10 +19,10 @@ 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 "python-2.7.14" > "$BUILD_DIR/runtime.txt"
+                    echo "$LATEST_2" > "$BUILD_DIR/runtime.txt"
                 fi
                 if [ "$PYTHON" = 3.6 ]; then
-                    echo "python-3.6.3" > "$BUILD_DIR/runtime.txt"
+                    echo "$LATEST_3" > "$BUILD_DIR/runtime.txt"
                 fi
             fi
 
-- 
GitLab