From 932cd257c98e9f56e878134f84a09d7d972bc46e Mon Sep 17 00:00:00 2001 From: Thomas Mollard Date: Fri, 24 Apr 2020 04:30:04 +0200 Subject: [PATCH] fix runtime.txt generation when using pipenv (#910) Co-authored-by: Casey Co-authored-by: Joe Kutner --- CHANGELOG.md | 3 +++ README.md | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a243274..386f932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ # Master +- Doc: fix runtime.txt generation when using pipenv +- Update requirements.txt builds to use Pip 20.0.2 +- Download get-pip.py to tmpdir instead of root dir - Bugfix: Fix support for naive latest version declaration in Python 3.8 -------------------------------------------------------------------------------- diff --git a/README.md b/README.md index 8413f67..dda1bfa 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,8 @@ To specify your python version, you also need a `runtime.txt` file - unless you Current default Python Runtime: Python 3.6.9 -Alternatively, you can provide a `setup.py` file, or a `Pipfile`. Using `Pipenv` will generate `runtime.txt` based on `python-version` at build time. +Alternatively, you can provide a `setup.py` file, or a `Pipfile`. +Using `pipenv` will generate `runtime.txt` at build time if one of the field `python_version` or `python_full_version` is specified in the `requires` section of your `Pipfile`. Specify a Buildpack Version ---------------------------