Skip to content

Commit 009cb6a

Browse files
committed
Update MSRV to match the upcoming PyO3 0.16
1 parent f91d8ae commit 009cb6a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions-rs/toolchain@v1
8585
with:
8686
profile: minimal
87-
toolchain: 1.41.1
87+
toolchain: 1.48.0
8888
default: true
8989
- name: Install maturin, poetry, and toml
9090
run: pip install maturin poetry toml

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ authors = [
88
description = "Rust binding of NumPy C-API"
99
documentation = "https://pyo3.github.io/rust-numpy/numpy"
1010
edition = "2018"
11+
rust-version = "1.48"
1112
repository = "https://github.com/PyO3/rust-numpy"
1213
keywords = ["numpy", "python", "binding"]
1314
license = "BSD-2-Clause"

README.md

Lines changed: 2 additions & 2 deletions
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.41](https://img.shields.io/badge/rustc-1.41+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
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)
66

77
Rust bindings for the NumPy C-API.
88

@@ -12,7 +12,7 @@ Rust bindings for the NumPy C-API.
1212

1313

1414
## Requirements
15-
- Rust >= 1.41.1
15+
- Rust >= 1.48.0
1616
- Basically, our MSRV follows the one of [PyO3](https://github.com/PyO3/pyo3)
1717
- Python >= 3.6
1818
- Python 3.5 support is dropped from 0.13

0 commit comments

Comments
 (0)