You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed a warning relating to the real code in the unit-integration-performance-tests logs from the CI, so putting it here so it doesn't get lost:
integration_tests/test_wms_server.py::test_wms_multidate_getmap
/code/datacube_ows/styles/ramp.py:258: RuntimeWarning: invalid value encountered in cast
return val.astype("uint8")
The text was updated successfully, but these errors were encountered:
IIRC recent versions of numpy have slightly odd behaviour wrt the uint8 dtype and this was nothing to worry about, but I'll flag it for a revisit and if it is expected behaviour, I'll document it.
I searched a bit and ONNX had a similar issue where they casted a negative float number to an unsigned integer, and cftime has a similar issue where they are casting NaNs/infs: Unidata/cftime#328.
Noticed a warning relating to the real code in the unit-integration-performance-tests logs from the CI, so putting it here so it doesn't get lost:
The text was updated successfully, but these errors were encountered: