#33116 [Bug]: Python 3.14 install fails because litellm-rust uses PyO3 0.23.5
### Check for existing issues
- [x] I have searched the existing issues and checked that my issue is not a duplicate.
### What happened?
Installing on 3.14, run into compilation issues, similar to https://github.com/BerriAI/litellm/issues/26056 but a different stacktrace.
LiteLLM 1.92.x builds litellm-rust from source on Python 3.14 and fails because PyO3 0.23.5 only supports up to Python 3.13 unless PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 is set. PyO3 0.26+ supports Python 3.14. Could LiteLLM update pyo3/pyo3-async-runtimes, update Python metadata, and publish cp314 wheels?
### Steps to Reproduce
1. create a 3.14 python env `uv venv --python 3.14` 2. Install the latest version of litellm `uv pip install litellm==1.92.0` 3. watch the sparks fly
### Relevant log output
```shell error: the configured Python interpreter version (3.14) is newer than PyO3's maximum supported version (3.13) = help: please check if an updated version of PyO3 is available. Current version: 0.23.5 = help: set PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 to suppress this check and build anyway using the stable ABI warning: build failed, waiting for other jobs to finish…