-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump version to 0.3 #37
Conversation
I think it's ready now. |
src/lib.rs
Outdated
//! It uses [pyo3](https://github.com/PyO3/pyo3) for rust bindings to cpython, and uses | ||
//! [ndarray](https://github.com/bluss/ndarray) for rust side matrix library. | ||
//! | ||
//! For numpy dependency, it calls `import numpy.core` internally so you just need numpy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For numpy dependency, it calls import numpy.core
internally. So you just need numpy
src/lib.rs
Outdated
@@ -1,3 +1,35 @@ | |||
//! `rust-numpy` provides Rust interfaces for [numpy](http://www.numpy.org/) APIs, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"numpy API" means Python API usually. This should be "NumPy C API".
https://docs.scipy.org/doc/numpy/reference/c-api.html
README.md
Outdated
- [Latest release(can be broken)](https://docs.rs/numpy) | ||
- [Current Master](https://rust-numpy.github.io/rust-numpy) | ||
|
||
|
||
Dependencies |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requrement?
README.md
Outdated
Dependencies | ||
------------- | ||
- nightly version of rust compiler (see [pyo3](https://github.com/PyO3/pyo3)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nightly toolchain
and link for PyO3/pyo3#5 may be useful
README.md
Outdated
- [rust-cpython](https://github.com/dgrunwald/rust-cpython) | ||
**Note** | ||
From 0.3, we migrated from rust-cpython to pyo3. | ||
If you want rust-cpython, use version 0.2.1 from crates.io. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you want to use rust-cpython
Thanks for review ❤️ |
Released 0.3.0 |
TODO