From: Richard Purdie Date: Sat, 13 Jun 2026 07:18:33 +0000 (+0100) Subject: oeqa/maturin: Update dependency version X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;ds=inline;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/maturin: Update dependency version There are security issues in earlier versions of pyo3, update the minimum version to avoid security warnings. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml b/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml index 5c0c06db4bc..0bf83bb6c43 100644 --- a/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml +++ b/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib"] rand = "0.9.0" [dependencies.pyo3] -version = "0.27.2" +version = "0.29.0" # "abi3-py39" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.9 features = ["abi3-py39"]