From c5481135f2b389678e642ef9e0e6fe018d1161c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Bogda=C5=82?= Date: Wed, 18 Nov 2015 13:52:45 +0100 Subject: [PATCH 1/2] Use python 3.5 on Heroku --- {{cookiecutter.repo_name}}/runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/runtime.txt b/{{cookiecutter.repo_name}}/runtime.txt index 18104d92..8d5e4598 100644 --- a/{{cookiecutter.repo_name}}/runtime.txt +++ b/{{cookiecutter.repo_name}}/runtime.txt @@ -1,3 +1,3 @@ {% if cookiecutter.use_python2 == 'n' -%} -python-3.4.3 +python-3.5.0 {%- endif %} From 518862d328eada79d77713fda71ff8d403011778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Bogda=C5=82?= Date: Wed, 18 Nov 2015 15:07:08 +0100 Subject: [PATCH 2/2] Use python 3.5 on Travis --- {{cookiecutter.repo_name}}/.travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/.travis.yml b/{{cookiecutter.repo_name}}/.travis.yml index 9796896f..85421fb9 100644 --- a/{{cookiecutter.repo_name}}/.travis.yml +++ b/{{cookiecutter.repo_name}}/.travis.yml @@ -9,7 +9,7 @@ before_install: language: python python: {% if cookiecutter.use_python2 == 'n' -%} - - "3.4" + - "3.5" {% else %} - "2.7" {%- endif %}