diff --git a/setup.py b/setup.py index ec1515bca31582deb6bafe36689c666e666bc7ef..150d5db578278ddc507568f68a04924604b2c626 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Affero General Public License # along with weboob. If not, see . - +from __future__ import print_function from setuptools import find_packages, setup import glob @@ -131,11 +131,9 @@ def install_weboob(): else: requirements.append('PIL') - if sys.version_info[0] > 2: - print >>sys.stderr, 'Python 3 is not supported.' - sys.exit(1) - if sys.version_info[1] < 6: # older than 2.6 - print >>sys.stderr, 'Python older than 2.6 is not supported.' + if sys.version_info.major == "2" and sys.version_info[1] < 6: # older than 2.6 + print(sys.version_info) + print('Python older than 2.6 is not supported. %s'%sys.version_info, file=sys.stderr) sys.exit(1) if not options.deps: