11rust-numpy
22===========
3- [ ![ Build Status] ( https://travis-ci.org/pyo3/rust-numpy.svg?branch=master )] ( https://travis-ci.org/pyo3/rust-numpy )
43[ ![ Actions Status] ( https://github.com/pyo3/rust-numpy/workflows/Test/badge.svg )] ( https://github.com/pyo3/rust-numpy/actions )
54[ ![ Crate] ( http://meritbadge.herokuapp.com/numpy )] ( https://crates.io/crates/numpy )
65[ ![ minimum rustc 1.39] ( https://img.shields.io/badge/rustc-1.39+-blue.svg )] ( https://rust-lang.github.io/rfcs/2495-min-rust-version.html )
@@ -14,6 +13,8 @@ Rust bindings for the NumPy C-API
1413
1514## Requirements
1615- Rust 1.39+
16+ - Python >= 3.6
17+ - Python 3.5 support is dropped from 0.13
1718- Some Rust libraries
1819 - [ ndarray] ( https://github.com/bluss/ndarray ) for rust-side matrix library
1920 - [ pyo3] ( https://github.com/PyO3/pyo3 ) for cpython binding
@@ -25,10 +26,6 @@ Rust bindings for the NumPy C-API
2526Starting from 0.3, rust-numpy migrated from rust-cpython to pyo3.
2627If you want to use rust-cpython, use version 0.2.1 from crates.io.
2728
28- ## Supported Python version
29-
30- Currently 3.5, 3.6, 3.7, and 3.8 are supported.
31-
3229
3330## Python2 Support
3431Version 0.5.0 is the last version that supports Python2.
@@ -43,7 +40,7 @@ features = ["python2"]
4340```
4441.
4542
46- You can also automatically specify python version in [ setup.py] ( examples/simple-extension/setup.py ) ,
43+ You can also automatically specify python version in ` setup.py ` ,
4744using [ setuptools-rust] ( https://github.com/PyO3/setuptools-rust ) .
4845
4946
@@ -84,7 +81,7 @@ fn main() -> PyResult<()> {
8481
8582### Write a Python module in Rust
8683
87- Please see the [ examples] ( examples ) directory for a complete example
84+ Please see the [ examples] ( https://github.com/PyO3/rust-numpy/ examples) directory for a complete example
8885
8986``` toml
9087[lib ]
0 commit comments