From 7734b006532b57bdade4add8df56523f3877aa21 Mon Sep 17 00:00:00 2001 From: Sam Collins Date: Thu, 26 Jan 2017 13:30:14 +0000 Subject: [PATCH] Updated circle config to be Python 3 --- circle.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/circle.yml b/circle.yml index 8e6cfe6..2d2ce88 100644 --- a/circle.yml +++ b/circle.yml @@ -1,4 +1,6 @@ machine: - environment: - DJANGO_SETTINGS_MODULE: config.settings.test - DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test + python: + version: 3.5.0 + environment: + DJANGO_SETTINGS_MODULE: config.settings.test + DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test