diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-03 22:29:25 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-04 08:08:34 +0100 |
| commit | 34383435b65ae5bd2723421c8988b4e451ab1181 (patch) | |
| tree | a57cb96ac594e3e2d39b02692c0550222324f19d /meta/lib/oeqa | |
| parent | 5b26a2b5077b2523967d0b4fa041b987e9a42131 (diff) | |
| download | poky-34383435b65ae5bd2723421c8988b4e451ab1181.tar.gz | |
oeqa/maturin/guessing-game: Bump dependencies to avoid security warning
The Cargo.toml lock for guessing-game, used to test maturin has a minor security
advisory which keeps tripping up github's automated security analysis, "PyO3
Risk of buffer overflow in `PyString::from_object`".
Bump the minimum version requirement for pyo3 to avoid this warning even if it
isn't anything critical and just automated tests.
(From OE-Core rev: 2e817e6e4d53543766b935479b148a1950cc37c8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
| -rw-r--r-- | meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml b/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml index de95025e86..a78ada2593 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"] | |||
| 14 | rand = "0.8.4" | 14 | rand = "0.8.4" |
| 15 | 15 | ||
| 16 | [dependencies.pyo3] | 16 | [dependencies.pyo3] |
| 17 | version = "0.19.0" | 17 | version = "0.24.1" |
| 18 | # "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8 | 18 | # "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8 |
| 19 | features = ["abi3-py38"] | 19 | features = ["abi3-py38"] |
| 20 | 20 | ||
