From f390f858347509c48ef94f9295e95307e6b7755d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jul 2026 16:42:58 +0000 Subject: [PATCH] build(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 f9555ad..ae20a47 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] zip = "2" quick-xml = { version = "0.36", features = ["async-tokio"] } -pyo3 = { version = "0.23", features = ["extension-module"], optional = true } +pyo3 = { version = "0.29", features = ["extension-module"], optional = true } [features] python = ["pyo3"] diff --git a/python/Cargo.toml b/python/Cargo.toml index 0177faf..3786983 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -8,5 +8,5 @@ name = "_core" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.23", features = ["extension-module"] } +pyo3 = { version = "0.29", features = ["extension-module"] } streamxl-core = { path = "../core" }