X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=setup.py;h=f7c701151bd407935474f55cddd5d256b2eb6a26;hp=8f67e094bd9edefb32af174e01b1d52ae6576b5b;hb=bb27511cfa75af5e9c6b7874800eb2b47fd27706;hpb=7379e83e9f59baecf070aeeb82c72c27b9239126 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