mailr25528 - /trunk/dep_check.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 02, 2014 - 09:34:
Author: bugman
Date: Tue Sep  2 09:34:16 2014
New Revision: 25528

URL: http://svn.gna.org/viewcvs/relax?rev=25528&view=rev
Log:
Fix for the minfx version checking logic in the dep_check module.

Now newer versions of minfx will be handled.


Modified:
    trunk/dep_check.py

Modified: trunk/dep_check.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/dep_check.py?rev=25528&r1=25527&r2=25528&view=diff
==============================================================================
--- trunk/dep_check.py  (original)
+++ trunk/dep_check.py  Tue Sep  2 09:34:16 2014
@@ -55,7 +55,7 @@
 try:
     import minfx
     ver = minfx.__version__.split('.')
-    if not (minfx.__version__ == 'trunk' or (int(ver[0]) <= 1 and 
int(ver[1]) <= 0 and int(ver[2]) <= 9)):
+    if not (minfx.__version__ == 'trunk' or not (int(ver[0]) <= 1 and 
int(ver[1]) <= 0 and int(ver[2]) <= 9)):
         sys.stderr.write("Version %s of the 'minfx' dependency is too old, 
minfx >= 1.0.9 is required.\n" % minfx.__version__)
         sys.exit()
 except ImportError:




Related Messages


Powered by MHonArc, Updated Tue Sep 02 10:40:03 2014