v0.1.9 (March 20, 2023)#
This is a change performed from v0.1.8.
Fix Bug fix for absolute path to Bagoue region pickling data. We used the
importlibmodule to handle the path to the pickled data.Fix Fix bug in updating tensor in
_zupdateclass of modulewatex.methods.em. Set the z property attribute using the _z. Idem for z_err which henceforth uses _z_err inwatex.externals.z.Zmodule.Enhancement Fix the dependencies when using
scikit-learn >=1.2.1. Data was new pickled in version1.2.1. No more longer uses the1.1.2version . Update to>=1.2.1to avoid the pickle warning at the beginning of package initialization as:UserWarning: Trying to unpickle estimator FeatureUnion from version 1.1.2 when using version 1.2.2. This might lead to breaking code or invalid results. Use at your own risk. For more info please refer to: https://scikit-learn.org/stable/model_persistence.html#security-maintainability-limitations warnings.warn(
The following changes are made in the
setup.pysetup_kwargs['install_requires'] = [ ... "numpy >=1.23.0", "xgboost >=1.7.3", # rather than >=1.5.0 "joblib >=1.1.1", # rather than >=1.2.0 "scikit-learn >=1.2.1", # rather than ==1.1.2" "threadpoolctl >=2.2.0", # rather than ==3.1.0 "matplotlib ==3.5.3", ]
Fix In
watex.utils.gistools.convert_position_float2str()fix the bug related to the use oftype(position) is floatin the validation of the position value( expected to be a float).type (position)is replaced byisinstance (position, float).Fix Bug fix in
watex.view.TPlot.plot_rhoa()whenerrorbarparameter is set toFalse. No more crash , apparent resistivity plot could henceforth be possible either witherrorbar=TrueorFalse.