From b94cdd802d39635c1b97c96c0b4a423f200ed40c Mon Sep 17 00:00:00 2001 From: Samuel Bradshaw Date: Sat, 19 Jul 2025 18:00:25 -0600 Subject: [PATCH] Loosen dependency requirements --- moshi/pyproject.toml | 20 ++++++++++---------- moshi/requirements.txt | 22 +++++++++++----------- moshi_mlx/pyproject.toml | 18 +++++++++--------- moshi_mlx/requirements.txt | 34 +++++++++++++++++----------------- 4 files changed, 47 insertions(+), 47 deletions(-) diff --git a/moshi/pyproject.toml b/moshi/pyproject.toml index 766e6944..12a88a1d 100644 --- a/moshi/pyproject.toml +++ b/moshi/pyproject.toml @@ -3,16 +3,16 @@ name = "moshi" requires-python = ">= 3.10" description = "Moshi is moshi" dependencies = [ - "numpy >= 1.26, < 2.3", - "safetensors >= 0.4.0, < 0.6", - "huggingface-hub >= 0.24, < 0.34", - "bitsandbytes >= 0.45, < 0.46; sys_platform == 'linux'", - "einops >= 0.7, < 0.9", - "sentencepiece == 0.2", - "sounddevice == 0.5", - "sphn >= 0.1.4, < 0.2.0", - "torch >= 2.2.0, < 2.8", - "aiohttp>=3.10.5, <3.12", + "numpy >= 1.26", + "safetensors >= 0.4.0", + "huggingface-hub >= 0.24", + "bitsandbytes >= 0.45; sys_platform == 'linux'", + "einops >= 0.7", + "sentencepiece >= 0.2", + "sounddevice >= 0.5", + "sphn >= 0.1.4", + "torch >= 2.2.0", + "aiohttp >= 3.10.5", "pytest >= 8.3.3", ] authors = [{name="Laurent Mazaré", email="laurent@kyutai.org"}] diff --git a/moshi/requirements.txt b/moshi/requirements.txt index 89cee794..ae1cf51c 100644 --- a/moshi/requirements.txt +++ b/moshi/requirements.txt @@ -1,11 +1,11 @@ -einops==0.7.0 -safetensors==0.4.4 -sentencepiece==0.2.0 -sounddevice==0.5.0 -soundfile==0.12.1 -sphn==0.1.4 -torch==2.2.0 -numpy==1.26.4 -aiohttp>=3.10.5, <3.11 -huggingface-hub>=0.24, <0.34 -pytest==8.3.3 \ No newline at end of file +einops>=0.7.0 +safetensors>=0.4.0 +sentencepiece>=0.2.0 +sounddevice>=0.5.0 +soundfile>=0.12.1 +sphn>=0.1.4 +torch>=2.2.0 +numpy>=1.26.4 +aiohttp>=3.10.5 +huggingface-hub>=0.24 +pytest>=8.3.3 \ No newline at end of file diff --git a/moshi_mlx/pyproject.toml b/moshi_mlx/pyproject.toml index db4a57b6..4cfe63bd 100644 --- a/moshi_mlx/pyproject.toml +++ b/moshi_mlx/pyproject.toml @@ -3,15 +3,15 @@ name = "moshi_mlx" requires-python = ">= 3.10" description = "Moshi is moshi, but running on macOS" dependencies = [ - "numpy >= 2.1.0, < 2.3", - "safetensors >= 0.4.0, < 0.6", - "huggingface-hub >= 0.24, < 0.29", - "rustymimi == 0.4.1", - "sentencepiece == 0.2", - "sounddevice == 0.5", - "sphn >= 0.2.0, < 0.3.0", - "mlx >= 0.26.0, < 0.27", - "aiohttp>=3.10.5, <3.12", + "numpy >= 2.0.0", + "safetensors >= 0.4.0", + "huggingface-hub >= 0.24", + "rustymimi >= 0.4.1", + "sentencepiece >= 0.2", + "sounddevice >= 0.5", + "sphn >= 0.2.0", + "mlx >= 0.26.0", + "aiohttp >= 3.10.5", ] authors = [{name="Laurent Mazaré", email="laurent@kyutai.org"}] maintainers = [{name="Laurent Mazaré", email="laurent@kyutai.org"}] diff --git a/moshi_mlx/requirements.txt b/moshi_mlx/requirements.txt index ca4c2cc9..56be3470 100644 --- a/moshi_mlx/requirements.txt +++ b/moshi_mlx/requirements.txt @@ -1,17 +1,17 @@ -aiohttp>=3.10.5, <3.11 -blessed==1.20.0 -cffi==1.17.0 -dashing==0.1.0 -huggingface-hub==0.24.6 -mlx==0.22.0 -nodeenv==1.9.1 -numpy==2.1.0 -psutil==6.0.0 -pycparser==2.22 -pyright==1.1.378 -rustymimi==0.4.1 -safetensors==0.4.4 -sentencepiece==0.2.0 -six==1.16.0 -sounddevice==0.5.0 -wcwidth==0.2.13 +aiohttp>=3.10.5 +blessed>=1.20.0 +cffi>=1.17.0 +dashing>=0.1.0 +huggingface-hub>=0.24.6 +mlx>=0.26.0 +nodeenv>=1.9.1 +numpy>=2.0.0 +psutil>=6.0.0 +pycparser>=2.22 +pyright>=1.1.378 +rustymimi>=0.4.1 +safetensors>=0.4.0 +sentencepiece>=0.2.0 +six>=1.16.0 +sounddevice>=0.5.0 +wcwidth>=0.2.13