From 6740b1a1ecad9507858c933754beeb6dcad46000 Mon Sep 17 00:00:00 2001 From: Quentin Kaiser Date: Mon, 2 Feb 2026 09:36:53 +0100 Subject: [PATCH] Bump pyo3 to 0.28 pyo3 0.28 has been released, see https://github.com/PyO3/pyo3/releases/tag/v0.28.0 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d464bf5..4ca98e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,10 +21,10 @@ kv = ["log/kv"] arc-swap = "~1" # It's OK to ask for std on log, because pyo3 needs it too. log = { version = "~0.4.21", default-features = false, features = ["std"] } -pyo3 = { version = ">=0.26,<0.28", default-features = false } +pyo3 = { version = ">=0.26,<0.29", default-features = false } [dev-dependencies] -pyo3 = { version = ">=0.26,<0.28", default-features = false, features = [ +pyo3 = { version = ">=0.26,<0.29", default-features = false, features = [ "auto-initialize", "macros", ] }