fix: Update elevenlabs Dependency for Python 3.12 Compatibility (#8223)
* ⬆️ (pyproject.toml): upgrade elevenlabs dependency to version 1.58.1 for Python version 3.12 and keep it at version 1.54.0 for other Python versions in both dev and backend base configurations. * ⬆️ (pyproject.toml): downgrade elevenlabs dependency version to 1.52.0 for python versions other than 3.12 to resolve compatibility issues
This commit is contained in:
parent
730c33877e
commit
a1d46220f0
3 changed files with 3924 additions and 5632 deletions
|
|
@ -170,7 +170,8 @@ dev = [
|
|||
"pytest-rerunfailures>=15.0",
|
||||
"scrapegraph-py>=1.10.2",
|
||||
"pydantic-ai>=0.0.19",
|
||||
"elevenlabs>=1.52.0",
|
||||
'elevenlabs==1.58.1; python_version == "3.12"',
|
||||
'elevenlabs>=1.52.0; python_version != "3.12"',
|
||||
"faker>=37.0.0",
|
||||
"pytest-timeout>=2.3.1",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -83,7 +83,8 @@ dependencies = [
|
|||
"greenlet>=3.1.1",
|
||||
"jsonquerylang>=1.1.1",
|
||||
"sqlalchemy[aiosqlite]>=2.0.38,<3.0.0",
|
||||
"elevenlabs>=1.54.0",
|
||||
'elevenlabs==1.58.1; python_version == "3.12"',
|
||||
'elevenlabs>=1.52.0; python_version != "3.12"',
|
||||
"webrtcvad>=2.0.10",
|
||||
"scipy>=1.15.2",
|
||||
"ibm-watsonx-ai>=1.3.1",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue