From cf33152bd7c957b93b30f93134555f8c3bef3310 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 04:59:00 +0000 Subject: [PATCH] Update numpy requirement from 0.19 to 0.20 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.19.0...v0.19.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 e9beedff..3f637641 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ approx = "0.5" rand_pcg = "0.3" pyo3 = { version = "0.19.0", optional = true, features = ["extension-module"] } pyo3-log = { version = "0.9.0", optional = true } -numpy = { version = "0.19", optional = true } +numpy = { version = "0.20", optional = true } indicatif = { version = "0.17", features = ["rayon"] } rstats = "2.0.1" thiserror = "1.0"