From a6db0a29b5878b6a5a983ab6b23df1f0e4f16f31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 15:03:48 +0000 Subject: [PATCH] chore(deps):(deps): update pyo3 requirement from 0.23 to 0.29 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.23.0...v0.29.0) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.29.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- python/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 639f0da..662b627 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -22,7 +22,7 @@ sha2 = "0.10" chrono = "0.4" [dependencies.pyo3] -version = "0.23" +version = "0.29" optional = true [features] diff --git a/python/Cargo.toml b/python/Cargo.toml index 255a0e6..0817d56 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -11,5 +11,5 @@ crate-type = ["cdylib"] [dependencies] streampdf-core = { path = "../core", features = ["python"] } -pyo3 = { version = "0.23", features = ["extension-module"] } +pyo3 = { version = "0.29", features = ["extension-module"] } chrono = "0.4"