Closed frejanordsiek closed 4 years ago
Support added in commit 68d83b92ac08fb97811686035800e7b9400cd161 with the new marshaller Marshallers.NumpyDtypeMarshaller
.
They are stored as their string representation, which is a bit tricky in the case of dtypes which have their align
argument set.
NumPy 1.20 (https://numpy.org/doc/stable/release/1.20.0-notes.html) changed how dtypes work, with them no longer having the type numpy.dtype but instead inherit from it. Commit 225de6e fixes this. Also, commit baec354 fixes the tests which used the deprecated and now removed numpy.sctypeNA
.
Add a marshaller to read/write
numpy.dtype
objects (https://numpy.org/doc/stable/reference/arrays.dtypes.html).