From aecb3a6c10ef2a88927ac451772054e91e739067 Mon Sep 17 00:00:00 2001 From: mitchell Date: Wed, 29 Apr 2026 01:00:57 -0400 Subject: [PATCH] fix: pin exact dependency versions in tts/pyproject.toml --- tts/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tts/pyproject.toml b/tts/pyproject.toml index e209660..ffff9e2 100644 --- a/tts/pyproject.toml +++ b/tts/pyproject.toml @@ -1,8 +1,8 @@ [project] name = "tts" version = "0.1.0" -requires-python = ">=3.12" +requires-python = "==3.12.*" dependencies = [ - "kokoro>=0.9.4", - "soundfile>=0.13.1", + "kokoro==0.9.4", + "soundfile==0.13.1", ]