From c1d9cf5f4304e5a1145945caf2fde4b56b5cbbbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 04:41:23 +0000 Subject: [PATCH] Update numpy requirement from 0.20 to 0.21 Updates the requirements on [numpy](https://github.com/PyO3/rust-numpy) to permit the latest version. - [Release notes](https://github.com/PyO3/rust-numpy/releases) - [Changelog](https://github.com/PyO3/rust-numpy/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyO3/rust-numpy/compare/v0.20.0...v0.20.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dc9b2443..a69d648a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ extern = [] python = ["dep:numpy", "dep:pyo3"] [dependencies] -numpy = {version = "0.20", optional = true} +numpy = {version = "0.21", optional = true} pyo3 = {version = "0.20", features = ["extension-module"], optional = true} rand = "0.8.5" rand_distr = "0.4.3"