When will PyO3 support Python 3.14? #5988
Replies: 2 comments
-
|
PyO3 has supported in-development builds of 3.14 for some time, we released 0.27 with full support for 3.14 final. I suspect |
Beta Was this translation helpful? Give feedback.
-
|
Building on @davidhewitt's reply — To pin down which crate is forcing the build: pip install --no-binary :all: -v agentlightning 2>&1 | grep -E "Building|maturin|pyo3"The first failing build line names the package. From there: pip download <that-package> --no-binary :all: --no-deps
tar -xzf <that-package>-*.tar.gz
grep -r '^pyo3' <that-package>-*/Cargo.tomlIf the version is
The |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to install agentlightning (a python lib), and rust says:
the configured Python interpreter version (3.14) is newer than PyO3's maximum supported version (3.13)When will PyO3 support Python 3.14?
Beta Was this translation helpful? Give feedback.
All reactions