From f710c94b6e4a8801dc8b430f2a8bcb02fde2e46e Mon Sep 17 00:00:00 2001 From: dbtreasure <73903007+dbtreasure@users.noreply.github.com> Date: Tue, 22 Jul 2025 18:44:04 -0600 Subject: [PATCH] Address code review feedback: remove explicit llvmlite pin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove explicit llvmlite>=0.44.0 pin as numba>=0.61.0 automatically pulls compatible version - Add changelog entry for Python 3.11+ dependency fix 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CHANGELOG.md | 2 ++ pyproject.toml | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d272c0fe1..dcdab5793 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 5654bf31b..65e80143e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,6 @@ dependencies = [ "openai~=1.74.0", # Explicit dependency pins for Python 3.11+ compatibility "numba>=0.61.0", - "llvmlite>=0.44.0", ] [project.urls]