changeset 52404:544b9d3075f4

rust-cpython: fix discrepancy in internal FFI lib version The dependency to `sys-python3` stayed at version 0.7.1 when `cpython` got bumped to 0.7.2 for Python 3.12 support. In pratice, this does not change much because Cargo rules imply that this means ">= 0.7.1, <0.8.0". Still it did not feel right, either `cpython` enforces a stricter version and this specification is not needed at all, or it meant that it was still possible to install the older version of `sys-python3`.
author Georges Racinet <georges.racinet@cloudcrane.io>
date Fri, 29 Nov 2024 22:55:30 +0100
parents b61c259c5457
children cf5b47b885b1
files rust/hg-cpython/Cargo.toml
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rust/hg-cpython/Cargo.toml	Wed Nov 20 10:58:19 2024 +0100
+++ b/rust/hg-cpython/Cargo.toml	Fri Nov 29 22:55:30 2024 +0100
@@ -18,4 +18,4 @@
 stable_deref_trait = "1.2.0"
 vcsgraph = "0.2.0"
 logging_timer = "1.1.0"
-python3-sys = "0.7.1"
+python3-sys = "0.7.2"