I have a script to compute eigenvalues and vectors without balancing, which I used almost daily for years, that requires nag4py. The code is in this blog: http://www.walkingrandomly.com/?p=5303 for which there is an associated SO post (How to use eig with the nobalance option as in MATLAB?).
Yesterday I upgraded nag4py and now I run into the following error when running the same script that has been working for years:
from nag4py.util import Nag_RowMajor,Nag_NoBalancing,Nag_NotLeftVecs,Nag_RightVecs,Nag_RCondEigVecs,Integer,NagError,INIT_FAIL
ImportError: cannot import name INIT_FAIL
In the meantime I have solved the problem by importing octave which uses the no balancing option by default. But I would like to resolve the issue with nag4py.
I have tested the NAG licence and it is valid.