1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Adrian Bunk <bunk@debian.org>
Date: Wed, 3 Dec 2025 15:35:07 +0000
Subject: Patch for pyo3 0.26/0.27
Bug-Debian: https://bugs.debian.org/1114321
Author: Colin Watson <cjwatson@debian.org>
---
Cargo.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 116d83c..6fd0988 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,10 +18,10 @@ crate-type = ["cdylib"]
cddl = "0.9.5"
ciborium = "0.2"
self_cell = "1.0"
-pyo3 = "0.22"
+pyo3 = ">=0.26,<0.28"
[build-dependencies]
-pyo3-build-config = { version = "0.22", features = ["resolve-config"] }
+pyo3-build-config = { version = ">=0.26,<0.28", features = ["resolve-config"] }
[profile.release]
lto = "thin"
\ No newline at end of file
|