X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=f7c701151bd407935474f55cddd5d256b2eb6a26;hb=02fcc2f500a4ef0f1788d886c5bf190059630a48;hp=8f67e094bd9edefb32af174e01b1d52ae6576b5b;hpb=4db0fb4c8e067200712eb377e42013c6fc2c628b;p=sfa.git diff --git a/setup.py b/setup.py index 8f67e094..f7c70115 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,13 @@ from glob import glob import shutil from distutils.core import setup +# check for the correct version of python +major,minor = sys.version_info [0:2] +if (major,minor) != (2,7): + print ("Sorry, the SFA package is currently available only with python-2.7") + exit(1) + + # while cleaning up we might not have this.. try: from sfa.util.version import version_tag