diff --git a/setup.py b/setup.py index 11c961ed3953b4ea4b41497d7f6e77c408fa9b56..7f950d90a5b690f9cb7443454bb44d4d2573a221 100755 --- a/setup.py +++ b/setup.py @@ -150,8 +150,8 @@ def install_weboob(): if sys.version_info < (3, 2): requirements.append('futures') - if sys.version_info < (2, 6): - print('Python older than 2.6 is not supported.', file=sys.stderr) + if sys.version_info < (2, 7): + print('Python older than 2.7 is not supported.', file=sys.stderr) sys.exit(1) if not options.deps: @@ -179,7 +179,6 @@ def install_weboob(): 'Environment :: Console', 'Environment :: X11 Applications :: Qt', 'License :: OSI Approved :: GNU Affero General Public License v3', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python', 'Topic :: Communications :: Email',