Commit 82e48d3a authored by Robert Bradshaw's avatar Robert Bradshaw

Check for Python 2.6+

parent 9ae2d8d9
......@@ -3,8 +3,8 @@
#
import os, sys, re, codecs
if sys.version_info[:2] < (2, 4):
sys.stderr.write("Sorry, Cython requires Python 2.4 or later\n")
if sys.version_info[:2] < (2, 6):
sys.stderr.write("Sorry, Cython requires Python 2.6 or later\n")
sys.exit(1)
import Errors
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment