From c46c0b80832e9ded7304b234b02db5ab73347476 Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Sun, 20 Oct 2024 14:06:44 +0200 Subject: [PATCH] build(uv): add constraint on numba to avoid resolution error Otherwise it backtracks to an old numba and then llvmlite version that can't be built: https://github.com/astral-sh/uv/issues/6281 --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9b2b137d63..7bef41aa35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,6 +147,9 @@ Discussions = "https://github.com/idiap/coqui-ai-TTS/discussions" tts = "TTS.bin.synthesize:main" tts-server = "TTS.server.server:main" +[tool.uv] +constraint-dependencies = ["numba>0.58.0"] + [tool.ruff] target-version = "py39" line-length = 120