mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
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:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user