From 4ccd4c7c96e8e3bda4a47bc85d92749b4927fcb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20du=20Garreau?= Date: Sun, 26 Oct 2025 17:59:16 +0100 Subject: [PATCH] Bump `pyo3` to 0.27 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e33db91..8eb7c34 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", default-features = false } +pyo3 = { version = ">=0.26,<0.28", default-features = false } [dev-dependencies] -pyo3 = { version = "0.26", default-features = false, features = [ +pyo3 = { version = ">=0.26,<0.28", default-features = false, features = [ "auto-initialize", "macros", ] }