From 68a34bc222af586c75daa5166c937f3f26cfefac Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 9 Dec 2017 18:01:17 -0800 Subject: [PATCH] Deploy to Heroku with Python 3.6.3 Heroku deploys are currently showing the following warning: The latest version of Python 3 is python-3.6.3 (you are using python-3.6.2, which is unsupported). We recommend upgrading by specifying the latest version (python-3.6.3). --- datasette/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasette/utils.py b/datasette/utils.py index bf0a7e5b..f85c8e4d 100644 --- a/datasette/utils.py +++ b/datasette/utils.py @@ -244,7 +244,7 @@ def temporary_heroku_directory(files, name, metadata, extra_options, branch, tem if metadata_content: open('metadata.json', 'w').write(json.dumps(metadata_content, indent=2)) - open('runtime.txt', 'w').write('python-3.6.2') + open('runtime.txt', 'w').write('python-3.6.3') if branch: install_from = 'https://github.com/simonw/datasette/archive/{branch}.zip'.format(