Fix #121: Upgraded to Python 3.6 to fix weird but harmless weakref error on django task

This commit is contained in:
Eliot Berriot 2018-03-25 23:30:46 +02:00
parent c2985b7dba
commit 5e1dce5883
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.5
FROM python:3.6
ENV PYTHONUNBUFFERED 1

View File

@ -1,4 +1,4 @@
FROM python:3.5
FROM python:3.6
ENV PYTHONUNBUFFERED 1

View File

@ -0,0 +1 @@
Upgraded to Python 3.6 to fix weird but harmless weakref error on django task (#121)