Update the Python3 in Dockerfile to 3.5

This commit is contained in:
Daniel Roy Greenfeld 2015-09-22 09:14:56 -07:00
parent 221178ad84
commit dc146fc0e8

View File

@ -1,5 +1,5 @@
{% if cookiecutter.use_python2 == 'n' -%}
FROM python:3.4
FROM python:3.5
{% else %}
FROM python:2.7
{%- endif %}