mailr25962 - /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 23, 2014 - 10:00:
Author: bugman
Date: Tue Sep 23 10:00:21 2014
New Revision: 25962

URL: http://svn.gna.org/viewcvs/relax?rev=25962&view=rev
Log:
Updated the minimum minfx dependency version number from 1.0.9 to 1.0.11 in 
the dep_check module.

This newest version handles infinite target function values preventing 
optimisation from continuing
forever (https://gna.org/forum/forum.php?forum_id=2477).  The 1.0.10 version 
is also useful as there
is full support for gradients and Hessians in the log-barrier constraint 
algorithm
(https://gna.org/forum/forum.php?forum_id=2475).


Modified:
    trunk/dep_check.py

Modified: trunk/dep_check.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/dep_check.py?rev=25962&r1=25961&r2=25962&view=diff
==============================================================================
--- trunk/dep_check.py  (original)
+++ trunk/dep_check.py  Tue Sep 23 10:00:21 2014
@@ -86,9 +86,9 @@
 # Minfx python package check.
 try:
     import minfx
-    min_version = '1.0.9'
+    min_version = '1.0.11'
     if not minfx.__version__ == 'trunk' and 
version_comparison(minfx.__version__, min_version) == -1:
-        sys.stderr.write("Version %s of the 'minfx' dependency is too old, 
minfx >= 1.0.9 is required.\n" % minfx.__version__)
+        sys.stderr.write("Version %s of the 'minfx' dependency is too old, 
minfx >= %s is required.\n" % (minfx.__version__, min_version))
         sys.exit()
 except ImportError:
     sys.stderr.write("The dependency 'minfx' has not been installed (see 
https://gna.org/projects/minfx/).\n")




Related Messages


Powered by MHonArc, Updated Tue Sep 23 10:20:04 2014