From 30422f0f3e6ebe15e65c2b9da0646af43992c670 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:04:42 +0000 Subject: [PATCH] Update pyo3 requirement from 0.21 to 0.22 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.21.0...v0.21.2) --- 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 51f8c096..3b67e52e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ rayon = "1.6" lazy_static = "1.4.0" approx = "0.5" rand_pcg = "0.3" -pyo3 = { version = "0.21", optional = true, features = ["extension-module"] } +pyo3 = { version = "0.22", optional = true, features = ["extension-module"] } pyo3-log = { version = "0.10", optional = true } numpy = { version = "0.21", optional = true } indicatif = { version = "0.17", features = ["rayon"] }