Skip to content
Snippets Groups Projects
Commit 544b9d3075f4 authored by Georges Racinet's avatar Georges Racinet :squid:
Browse files

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`.
parent b61c259c5457
No related branches found
No related tags found
2 merge requests!1292Draft: 7.0rc preparation,!1134Bootstraping PyO3 Rust bindings
......@@ -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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment