Skip to content

Commit f14ba1e

Browse files
authored
Bumped the MSRV and PyO3 version in README.md
Note that the `numpy` version will still need to be bumped in the README (along with Cargo.toml) before released.
1 parent 9f72975 commit f14ba1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rust-numpy
22
===========
33
[![Actions Status](https://github.com/PyO3/rust-numpy/workflows/CI/badge.svg)](https://github.com/PyO3/rust-numpy/actions)
44
[![Crate](https://img.shields.io/crates/v/numpy.svg)](https://crates.io/crates/numpy)
5-
[![Minimum rustc 1.48](https://img.shields.io/badge/rustc-1.48+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
5+
[![Minimum rustc 1.63](https://img.shields.io/badge/rustc-1.63+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
66
[![Documentation](https://docs.rs/numpy/badge.svg)](https://docs.rs/numpy)
77
[![codecov](https://codecov.io/gh/PyO3/rust-numpy/branch/main/graph/badge.svg)](https://codecov.io/gh/PyO3/rust-numpy)
88

@@ -13,7 +13,7 @@ Rust bindings for the NumPy C-API.
1313
- [Current main](https://pyo3.github.io/rust-numpy)
1414

1515
## Requirements
16-
- Rust >= 1.48.0
16+
- Rust >= 1.63.0
1717
- Basically, our MSRV follows the one of [PyO3](https://github.com/PyO3/pyo3)
1818
- Python >= 3.7
1919
- Python 3.6 support was dropped from 0.16
@@ -38,7 +38,7 @@ name = "rust_ext"
3838
crate-type = ["cdylib"]
3939

4040
[dependencies]
41-
pyo3 = { version = "0.21", features = ["extension-module"] }
41+
pyo3 = { version = "0.22", features = ["extension-module"] }
4242
numpy = "0.21"
4343
```
4444

@@ -93,7 +93,7 @@ fn rust_ext<'py>(_py: Python<'py>, m: &Bound<'py, PyModule>) -> PyResult<()> {
9393
name = "numpy-test"
9494

9595
[dependencies]
96-
pyo3 = { version = "0.21", features = ["auto-initialize"] }
96+
pyo3 = { version = "0.22", features = ["auto-initialize"] }
9797
numpy = "0.21"
9898
```
9999

0 commit comments

Comments
 (0)