Breaking change
This new release changes the behaviour of `objects_are_allclose` for NaNs. If `equal_nan=True`, all the NaN values are equal. Previously, only the NaNs in tensors/arrays and DataFrame were equaled.
python
behaviour in 0.1.x
>>> objects_are_allclose(float('nan'), float('nan'), equal_nan=True)
False
>>> objects_are_allclose([1, 4.2, float('nan')], [1, 4.2, float('nan')], equal_nan=True)
False
behaviour in 0.2.0 (new)
>>> objects_are_allclose(float('nan'), float('nan'), equal_nan=True)
True
>>> objects_are_allclose([1, 4.2, float('nan')], [1, 4.2, float('nan')], equal_nan=True)
True
What's Changed
* Update readme by durandtibo in https://github.com/durandtibo/coola/pull/330
* Fix docstring format by durandtibo in https://github.com/durandtibo/coola/pull/331
* Update dependencies by durandtibo in https://github.com/durandtibo/coola/pull/332
* [BC] `ScalarAllCloseOperator` compares `NaN`s as equal by durandtibo in https://github.com/durandtibo/coola/pull/333
* Add reference documentation by durandtibo in https://github.com/durandtibo/coola/pull/334
* Fix documentation workflow by durandtibo in https://github.com/durandtibo/coola/pull/335
* Make polars allclose ops consistent with pandas by durandtibo in https://github.com/durandtibo/coola/pull/336
* Release version `0.2.0` by durandtibo in https://github.com/durandtibo/coola/pull/337
**Full Changelog**: https://github.com/durandtibo/coola/compare/v0.1.2...v0.2.0