1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Relaxed versioned dependency on pyo3 to 0.*. and regex to >=1.7.1.
Version 0.22 of pyo3 is in Debian Sid, 0.17 is not available. Changed
dependency to > 0.x and < 1.x. Version 1.8.3 of regex is missing in
Debian Bookworm, reducing dependency to an available version.
Also the code requires pyo3 enabling feature "gil-refs" when >= 0.21.
Author: Petter Reinholdtsen <pere@debian.org>
Bug-Debian: https://bugs.debian.org/1038723
Forwarded: not-needed
Reviewed-By: Petter Reinholdtsen <pere@debian.org>
Last-Update: 2024-09-10
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,7 +14,7 @@
]
[dependencies]
-pyo3 = { version = "0.24.1", default-features = false, features = [
+pyo3 = { version = "0", default-features = false, features = [
"extension-module",
"macros",
], optional = true }
|