fix: Relax redis dependency version constraint (#9154)

Relax redis dependency version constraint

Changed the redis dependency in pyproject.toml from an exact version (5.2.1) to a minimum version (>=5.2.1) to allow for newer compatible releases.
This commit is contained in:
Edwin Jose 2025-07-23 16:03:31 -04:00 committed by GitHub
commit 31d37dff75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ dependencies = [
"certifi==2024.8.30",
'fastavro==1.9.7; python_version < "3.13"',
'fastavro>=1.9.8; python_version >= "3.13"',
"redis==5.2.1",
"redis>=5.2.1",
"metaphor-python==0.1.23",
'pywin32==307; sys_platform == "win32"',
"langfuse==2.53.9",

2
uv.lock generated
View file

@ -4981,7 +4981,7 @@ requires-dist = [
{ name = "pywin32", marker = "sys_platform == 'win32'", specifier = "==307" },
{ name = "qdrant-client", specifier = "==1.9.2" },
{ name = "qianfan", specifier = "==0.3.5" },
{ name = "redis", specifier = "==5.2.1" },
{ name = "redis", specifier = ">=5.2.1" },
{ name = "ruff", specifier = ">=0.9.7" },
{ name = "scipy", specifier = ">=1.14.1" },
{ name = "scrapegraph-py", specifier = ">=1.12.0" },