Open nmcclatchey opened 3 years ago
I only saw version 2.0 from NEP 1, can you tell me where is version 3.0 defined? Thanks.
You can find all 3 versions defined on numpy.org. Specifically, on the numpy.lib.format page.
Version 3.0 merely swaps ASCII strings to Unicode strings.
CNPY originally only supported NPY 1.0 headers, with a 2-byte length field. This PR causes
parse_npy_header()
to respond to NPY 2.0 and 3.0 by reading the header length as 4 bytes.