You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently maturin hardcodes minimal supported interpreter versions based on pyo3 versions, it'd be nice if this information is encoded in cargo package metadata of pyo3 and pyo3-ffi so we can make it future-proof in maturin.
For example:
[package.metadata.cpython]
version = ">=3.7,<3.14"
[package.metadata.pypy]
version = ">=3.9,<3.11"
The text was updated successfully, but these errors were encountered:
messense
changed the title
Add minimal supported CPython/PyPy versions to cargo package metadata
Add supported CPython/PyPy versions to cargo package metadata
Dec 2, 2024
https://doc.rust-lang.org/cargo/reference/manifest.html#the-metadata-table
Currently
maturin
hardcodes minimal supported interpreter versions based on pyo3 versions, it'd be nice if this information is encoded in cargo package metadata ofpyo3
andpyo3-ffi
so we can make it future-proof inmaturin
.For example:
The text was updated successfully, but these errors were encountered: