From 198bd176f7de969578a303e6c99c696b0c0f6d2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 18:47:55 +0000 Subject: [PATCH] chore(deps): Update numpy requirement from 0.28 to 0.29 in /rust 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.28.0...v0.28.0) --- updated-dependencies: - dependency-name: numpy dependency-version: 0.28.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 1ec6e287..e180f82b 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -23,7 +23,7 @@ openblas = ["ndarray/blas"] [dependencies] # PyO3 0.28 supports Python 3.9-3.14 pyo3 = "0.28" -numpy = "0.28" +numpy = "0.29" ndarray = { version = "0.17", features = ["rayon"] } rand = "0.10" rand_xoshiro = "0.8"