fix runtime.txt generation when using pipenv (#910)

Co-authored-by: Casey <caseylfaist@gmail.com>
Co-authored-by: Joe Kutner <jpkutner@gmail.com>
This commit is contained in:
Thomas Mollard
2020-04-24 04:30:04 +02:00
committed by GitHub
parent 989351467f
commit 932cd257c9
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -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
--------------------------------------------------------------------------------
+2 -1
View File
@@ -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
---------------------------