Open bnavigator opened 5 days ago
@ehgus could you please take a look?
I will take a close look at the bug this weekend. Can you also describe the Numpy version used? Since the change passed numcodecs testsuits, we will probably need to add more tests to catch such bugs.
@bnavigator Could you also check if it is fixed by replacing np.subtract(arr[1:], arr[0:-1], out=enc[1:])
to enc[1:] = np.diff(arr)
?
np.diff
was used in the previous version.
@bnavigator Could you also check if it is fixed by replacing
np.subtract(arr[1:], arr[0:-1], out=enc[1:])
toenc[1:] = np.diff(arr)
?
Yes, that's what we do right now:
NumPy is at 2.1.3. Here is the full install and test log, succeeding with the patch applied: numcodecs_test_log.txt
Latest released zarr is still 2.8.13, but numcodecs is already 0.14. They do not play together: