Add support for Python 3.8 latest version (#955)

* Add support for Python 3.8 latest version

If the pip lock file only specifies `3.8` and no bug fix version, it should use Python LATEST_38.

* Update CHANGELOG.md

* Update changelog

Co-authored-by: Johannes Hoppe <info@johanneshoppe.com>
Co-authored-by: Casey <caseylfaist@gmail.com>
This commit is contained in:
Joe Kutner
2020-04-23 08:11:53 -05:00
committed by GitHub
parent 373a656272
commit 106f2997fa
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -2,6 +2,8 @@
# Master
- Bugfix: Fix support for naive latest version declaration in Python 3.8
--------------------------------------------------------------------------------
# 169 (2020-04-22)
+3
View File
@@ -27,6 +27,9 @@ if [[ -f $BUILD_DIR/Pipfile ]]; then
if [ "$PYTHON" = 3.7 ]; then
echo "$LATEST_37" > "$BUILD_DIR/runtime.txt"
fi
if [ "$PYTHON" = 3.8 ]; then
echo "$LATEST_38" > "$BUILD_DIR/runtime.txt"
fi
fi