mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 15:00:19 +00:00
Add support for Python 3.6.11 and 3.7.8 (#988)
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# Python Buildpack Changelog
|
||||
|
||||
# Master
|
||||
- Python 3.6.11 and 3.7.8 are now available (CPython)
|
||||
|
||||
# 170 (2020-05-19)
|
||||
|
||||
- Python 2.7.18, 3.5.9, 3.7.7 and 3.8.3 are now available (CPython).
|
||||
|
||||
@@ -63,8 +63,8 @@ Specify a Python Runtime
|
||||
Supported runtime options include:
|
||||
|
||||
- `python-3.8.3`
|
||||
- `python-3.7.7`
|
||||
- `python-3.6.10`
|
||||
- `python-3.7.8`
|
||||
- `python-3.6.11`
|
||||
- `python-2.7.18`
|
||||
|
||||
## Tests
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
DEFAULT_PYTHON_VERSION="python-3.6.10"
|
||||
DEFAULT_PYTHON_VERSION="python-3.6.11"
|
||||
LATEST_38="python-3.8.3"
|
||||
LATEST_37="python-3.7.7"
|
||||
LATEST_36="python-3.6.10"
|
||||
LATEST_37="python-3.7.8"
|
||||
LATEST_36="python-3.6.11"
|
||||
LATEST_35="python-3.5.9"
|
||||
LATEST_34="python-3.4.10"
|
||||
LATEST_27="python-2.7.18"
|
||||
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build Path: /app/.heroku/python/
|
||||
|
||||
source $(dirname $0)/python3
|
||||
Reference in New Issue
Block a user