From c3b9584e62fe978f587e076b437b0e0c131f04a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 04:41:31 +0000 Subject: [PATCH] Update pyo3 requirement from 0.20 to 0.21 Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) to permit the latest version. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.20.0...v0.20.3) --- updated-dependencies: - dependency-name: pyo3 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..0066f62a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ python = ["dep:numpy", "dep:pyo3"] [dependencies] numpy = {version = "0.20", optional = true} -pyo3 = {version = "0.20", features = ["extension-module"], optional = true} +pyo3 = {version = "0.21", features = ["extension-module"], optional = true} rand = "0.8.5" rand_distr = "0.4.3"