From 821223fd994079905078cb9da209f123e7695e92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 09:12:06 +0000 Subject: [PATCH] chore(deps): update pyo3 requirement from 0.22 to 0.29 in /physerver 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.22.0...v0.29.0) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.29.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- physerver/crates/phycmd-py/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physerver/crates/phycmd-py/Cargo.toml b/physerver/crates/phycmd-py/Cargo.toml index a8b9cc3..2884fad 100644 --- a/physerver/crates/phycmd-py/Cargo.toml +++ b/physerver/crates/phycmd-py/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] phycmd-rust = { path = "../phycmd-rust", features = ["test-mock"] } phycmd-core = { path = "../phycmd-core", features = ["test-mock"] } -pyo3 = { version = "0.22", features = ["extension-module", "abi3-py38"] } +pyo3 = { version = "0.29", features = ["extension-module", "abi3-py38"] } parking_lot = "0.12" anyhow = "1.0" tokio = { version = "1.35", features = ["sync", "rt"], default-features = false }