Added support for Python 2.7, 3.5, 3.6, 3.7, 3.8.
Added support for 64-bit Python
Added support for Linux
Added support for CNL 8.6, CNL 2016.0, CNL 2016.1, and CNL 2019.
Dropped support for Python 3.2
Renamed package from imsl
to pyimsl
to disambiguate it from the PyNL package. Users migrating from older versions of PyIMSL will need to update their import statements from:
from imsl.stat.empiricalQuantiles import empiricalQuantiles
to
from pyimsl.stat.empiricalQuantiles import empiricalQuantiles
other references to the imsl
package will also need to be updated to pyimsl
.
Fixed access violation exception when constructing an instance of pyimsl.stat.kohonenSOMTrainer
.