X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=setup.py;fp=setup.py;h=49f878a8d06297cce62d450f097eb82f44253003;hp=412b401016c36481b366d5239e3050b76620ce50;hb=76aad4d9d05316369f99138a27c820473dff1e93;hpb=78e5fb75e3793ae9dfce7f1bbd4a2b0f27b7ecc6 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)