Update README.md (#354)

This commit is contained in:
matsulib
2016-12-31 10:17:21 +09:00
committed by Kenneth Reitz
parent 17081d0328
commit 8db1f07fba
+8 -8
View File
@@ -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)