From eceefe7114bc5d0fc94ac77ee4e510c94c1a76bf Mon Sep 17 00:00:00 2001 From: Ross Brattain Date: Wed, 21 Jun 2017 14:57:13 -0700 Subject: add Python3 support with six switch to relative imports for package file use absolute imports in main this requires renaming anteater.py to main.py to avoid absolute import name conflict update setup.py to indicate python 3.4 support Change-Id: I0fcaf8a9825557962dc98a6a4eef490051fbbfb0 Signed-off-by: Ross Brattain --- tasks.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tasks.py') diff --git a/tasks.py b/tasks.py index e2e084b..55ac340 100644 --- a/tasks.py +++ b/tasks.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +from __future__ import absolute_import +from __future__ import print_function import os import sys -- cgit 1.2.3-korg