setup.py: Require Python 2.6 or newer.

This commit is contained in:
Mika Suomalainen 2012-03-24 14:03:59 +02:00
parent 590a992651
commit fab5bb63be
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@
import sys
if sys.version_info < (2, 4, 0):
sys.stderr.write("Supybot requires Python 2.4 or newer.\n")
if sys.version_info < (2, 6, 0):
sys.stderr.write("Supybot requires Python 2.6 or newer.\n")
sys.exit(-1)
import textwrap