mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c612a7fb1 | |||
| f91f4ee4ce | |||
| eea9a7fd0f |
@@ -3,6 +3,10 @@
|
|||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
|
||||||
|
## v180 (2020-09-24)
|
||||||
|
|
||||||
|
- Python 3.8.6 is now available (CPython) (#1072).
|
||||||
|
|
||||||
## v179 (2020-09-23)
|
## v179 (2020-09-23)
|
||||||
|
|
||||||
- Remove duplicate pipenv metric event (#1070).
|
- Remove duplicate pipenv metric event (#1070).
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ Specify a Python Runtime
|
|||||||
|
|
||||||
Supported runtime options include:
|
Supported runtime options include:
|
||||||
|
|
||||||
- `python-3.8.5`
|
- `python-3.8.6`
|
||||||
- `python-3.7.9`
|
- `python-3.7.9`
|
||||||
- `python-3.6.12`
|
- `python-3.6.12`
|
||||||
- `python-2.7.18`
|
- `python-2.7.18`
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@
|
|||||||
# shellcheck disable=2034
|
# shellcheck disable=2034
|
||||||
|
|
||||||
DEFAULT_PYTHON_VERSION="python-3.6.12"
|
DEFAULT_PYTHON_VERSION="python-3.6.12"
|
||||||
LATEST_38="python-3.8.5"
|
LATEST_38="python-3.8.6"
|
||||||
LATEST_37="python-3.7.9"
|
LATEST_37="python-3.7.9"
|
||||||
LATEST_36="python-3.6.12"
|
LATEST_36="python-3.6.12"
|
||||||
LATEST_35="python-3.5.10"
|
LATEST_35="python-3.5.10"
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@ set -e
|
|||||||
if [[ -f Pipfile.lock ]]; then
|
if [[ -f Pipfile.lock ]]; then
|
||||||
if [[ -f .heroku/python/Pipfile.lock.sha256 ]]; then
|
if [[ -f .heroku/python/Pipfile.lock.sha256 ]]; then
|
||||||
if [[ $(openssl dgst -sha256 Pipfile.lock) == $(cat .heroku/python/Pipfile.lock.sha256) ]]; then
|
if [[ $(openssl dgst -sha256 Pipfile.lock) == $(cat .heroku/python/Pipfile.lock.sha256) ]]; then
|
||||||
# Don't skip installation of there are git deps.
|
# Don't skip installation if there are git deps.
|
||||||
if ! grep -q 'git' Pipfile.lock; then
|
if ! grep -q 'git' Pipfile.lock; then
|
||||||
echo "Skipping installation, as Pipfile.lock hasn't changed since last deploy." | indent
|
echo "Skipping installation, as Pipfile.lock hasn't changed since last deploy." | indent
|
||||||
|
|
||||||
|
|||||||
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