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:


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to