From 06320f3ae5bfec1f631e9eae288430a5bd1b5290 Mon Sep 17 00:00:00 2001 From: srubio Date: Tue, 31 Mar 2020 16:06:49 +0200 Subject: [PATCH] remove future import --- setup.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index d3245fae..226dd8a1 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,6 @@ # Always prefer setuptools over distutils import os, imp, sys from setuptools import setup, find_packages -try: - from __future__ import print_function - from builtins import str -except: - pass __doc__ = """ @@ -29,9 +24,11 @@ ------------------------------------------------------------------------------- """ - -if 'help' in str(sys.argv): - print(__doc__) +try: + #python3 + from builtins import str +except: + pass release = open('fandango/VERSION').read()