From 9ada56d0b0a1208c83205484f96e6872c9bbd3e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 8 Apr 2024 14:26:30 -0700 Subject: [PATCH] pyproject: use compatible version --- pyproject.toml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d0f4ac109..8baf090ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,10 +20,10 @@ classifiers = [ "Topic :: Scientific/Engineering :: Artificial Intelligence" ] dependencies = [ - "aiohttp==3.9.3", - "numpy==1.26.4", - "Pillow==10.2.0", - "typing-extensions==4.10.0", + "aiohttp~=3.9.0", + "numpy~=1.26.0", + "Pillow~=10.2.0", + "typing-extensions~=4.10.0", ] [project.urls] @@ -31,17 +31,17 @@ Source = "https://github.com/daily-co/dailyai" Website = "https://daily.co" [project.optional-dependencies] -anthropic = [ "anthropic==0.20.0" ] -azure = [ "azure-cognitiveservices-speech==1.36.0" ] -daily = [ "daily-python==0.7.2" ] -examples = [ "python-dotenv==1.0.1", "flask==3.0.2", "flask_cors==4.0.0" ] -fal = [ "fal==0.12.3" ] -local = [ "pyaudio==0.2.14" ] -openai = [ "openai==1.14.2" ] -playht = [ "pyht==0.0.26" ] -silero = [ "torch==2.2.1", "torchaudio==2.2.1" ] -websocket = [ "websockets==12.0" ] -whisper = [ "faster_whisper==1.0.1" ] +anthropic = [ "anthropic~=0.20.0" ] +azure = [ "azure-cognitiveservices-speech~=1.36.0" ] +daily = [ "daily-python~=0.7.0" ] +examples = [ "python-dotenv~=1.0.0", "flask~=3.0.0", "flask_cors~=4.0.0" ] +fal = [ "fal~=0.12.0" ] +local = [ "pyaudio~=0.2.0" ] +openai = [ "openai~=1.14.0" ] +playht = [ "pyht~=0.0.26" ] +silero = [ "torch~=2.2.0", "torchaudio~=2.2.0" ] +websocket = [ "websockets~=12.0" ] +whisper = [ "faster_whisper~=1.0.0" ] [tool.setuptools.packages.find] # All the following settings are optional: