setup.py: Actually, don't recommend Python 2.7.

This commit is contained in:
Valentin Lorentz 2015-12-10 18:39:36 +01:00
parent fc39b4024d
commit 6a669c1483
1 changed files with 1 additions and 2 deletions

View File

@ -232,8 +232,7 @@ setup(
if sys.version_info < (2, 7, 0):
sys.stderr.write('+-----------------------------------------------+\n')
sys.stderr.write('| Running Limnoria on Python 2.6 is deprecated. |\n')
sys.stderr.write('| Please consider upgrading to Python 3.x (or |\n')
sys.stderr.write('| at least 2.7) |\n')
sys.stderr.write('| Please consider upgrading to Python 3.x. |\n')
sys.stderr.write('+-----------------------------------------------+\n')
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: