jturner314 / ndarray-npy

.npy and .npz file format support for ndarray
https://docs.rs/ndarray-npy
Apache License 2.0
56 stars 18 forks source link

Update to ndarray 0.13 #27

Closed nilgoyette closed 5 years ago

nilgoyette commented 5 years ago

One liner. All tests still pass, with or without features flag. Did you plan to update and release soon? We're kind of excited about ndarray 0.13 :)

jturner314 commented 5 years ago

Thanks for this. CI failed, but that appears to be because Travis is using the wrong version of the compiler. (Apparently it's treating stable as 1.35 and beta as 1.36. Hopefully they'll fix that soon.) I tested it locally, and everything worked fine, so I merged the PR.

I'd like to finish implementing #24 before I release a new version because it will require breaking changes to the error enums.

Don't forget that you can always depend on your patched version of a crate if you'd like to use your changes before I make a new release on crates.io, for example:

[patch.crates-io]
ndarray-npy = { git = "https://github.com/nilgoyette/ndarray-npy.git", branch = "ndarray13" }
jturner314 commented 5 years ago

@nilgoyette I've released a new version.