Merge pull request #2236 from dbtreasure/fix/python-311-compatibility

Fix Python 3.11+ compatibility by pinning numba/llvmlite versions
This commit is contained in:
Mark Backman
2025-07-22 18:20:38 -07:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed a dependency issue for uv users where an `llvmlite` version required python 3.9.
- Fixed an issue in `MiniMaxHttpTTSService` where the `pitch` param was the
incorrect type.

View File

@@ -34,6 +34,8 @@ dependencies = [
"resampy~=0.4.3",
"soxr~=0.5.0",
"openai~=1.74.0",
# Explicit dependency pins for Python 3.11+ compatibility
"numba>=0.61.0",
]
[project.urls]