From de2bd7e717a3cd1fd85c2e5ff67649c5210e2049 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 02:46:12 +0000 Subject: [PATCH] build(deps): update pyo3 requirement from 0.22.0 to 0.23.4 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/v0.23.4/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.22.0...v0.23.4) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bindings/python/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 0f603ee..07eaccf 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -19,7 +19,7 @@ coverage = ["regorus/coverage"] [dependencies] anyhow = "1.0" ordered-float = "4.2.0" -pyo3 = {version = "0.22.0", features = ["anyhow", "extension-module"] } +pyo3 = {version = "0.23.4", features = ["anyhow", "extension-module"] } regorus = { path = "../..", default-features = false, features = ["arc"] } serde_json = "1.0.112"