From 9e3d5c49b3b690b326bbc73ccca03203f3c70f40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:35:46 +0000 Subject: [PATCH] build(deps): update pyo3 requirement in /bindings/python 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.27.1/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.25.0...v0.27.1) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.27.1 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 beb881de..43231b24 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib"] built = { version = "0.8.0", features = ["cargo-lock", "chrono"] } [dependencies] -pyo3 = { version = "0.25.0", features = ["extension-module", "abi3-py39"] } +pyo3 = { version = "0.27.1", features = ["extension-module", "abi3-py39"] } pyo3-built = "0.6" rayon = "1" url = "2"