DimensionalData apparently currently does not work on julia 1.9, which we did not catch because testing is only on 1.10.
Now I am getting a test failure in DD related to DiskArrays on julia 1.9 only. This errors on 1.9 and works on 1.10 and after:
using DiskArrays
raw_data = rand(100, 100, 2)
chunked_data = DiskArrays.TestTypes.ChunkedDiskArray(raw_data, (10, 10, 2))
DiskArrays.GridChunks(chunked_data, (20,20))
Because of how map works, chunked_data is 3-dimensional, but the GridChunks returned here are just for the first 2 dimensions. But prior to julia 1.9 this errors. I'm not sure what the correct behaviour here is.
Regardless, DiskArrays also seems to allow julia 1.9 but only tests on 1.10. Considering the amount of mapping over tuples that is going on, it would probably be wise to change one of the two.
DimensionalData apparently currently does not work on julia 1.9, which we did not catch because testing is only on 1.10.
Now I am getting a test failure in DD related to DiskArrays on julia 1.9 only. This errors on 1.9 and works on 1.10 and after:
Because of how
mapworks, chunked_data is 3-dimensional, but the GridChunks returned here are just for the first 2 dimensions. But prior to julia 1.9 this errors. I'm not sure what the correct behaviour here is.Regardless, DiskArrays also seems to allow julia 1.9 but only tests on 1.10. Considering the amount of mapping over tuples that is going on, it would probably be wise to change one of the two.