X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=setup.py;h=49f878a8d06297cce62d450f097eb82f44253003;hp=412b401016c36481b366d5239e3050b76620ce50;hb=HEAD;hpb=f27128bd33db08114f264c4028ae667c962b64c5 diff --git a/setup.py b/setup.py index 412b4010..49f878a8 100755 --- a/setup.py +++ b/setup.py @@ -17,8 +17,8 @@ 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") +if major <= 2: + print ("Sorry, this version of SFA package requires python3") exit(1)