From 8db1f07fba59a62896db9c236f7d09e01c7a332a Mon Sep 17 00:00:00 2001 From: matsulib <tmy.matsu@gmail.com> Date: Sat, 31 Dec 2016 10:17:21 +0900 Subject: [PATCH] Update README.md (#354) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a6b940a3..03e303bb 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,12 @@ Deploying a Python application couldn't be easier: $ git push heroku master ... -----> Python app detected - -----> Installing python-2.7.12 + -----> Installing python-2.7.13 $ pip install -r requirements.txt Collecting requests (from -r requirements.txt (line 1)) - Downloading requests-2.10.0-py2.py3-none-any.whl (501kB) + Downloading requests-2.12.4-py2.py3-none-any.whl (576KB) Installing collected packages: requests - Successfully installed requests-2.10.0 + Successfully installed requests-2.12.4 -----> Discovering process types Procfile declares types -> (none) @@ -44,11 +44,11 @@ Specify a Python Runtime Specific versions of the Python runtime can be specified with a `runtime.txt` file: $ cat runtime.txt - python-3.5.2 + python-3.6.0 Runtime options include: -- `python-2.7.12` -- `python-3.5.2` -- `pypy-5.3.1` (unsupported, experimental) -- `pypy3-2.4.0` (unsupported, experimental) +- `python-2.7.13` +- `python-3.6.0` +- `pypy-5.6.0` (unsupported, experimental) +- `pypy3-5.5.0` (unsupported, experimental) -- GitLab