<feat>: add Redis dependency

This commit is contained in:
berrytern 2024-06-21 17:11:46 -03:00 committed by Gabriel Luiz Freitas Almeida
commit 795a2bd3df
2 changed files with 4 additions and 3 deletions

5
poetry.lock generated
View file

@ -5659,6 +5659,7 @@ description = "Nvidia JIT LTO Library"
optional = true
python-versions = ">=3"
files = [
{file = "nvidia_nvjitlink_cu12-12.5.40-py3-none-manylinux2014_aarch64.whl", hash = "sha256:004186d5ea6a57758fd6d57052a123c73a4815adf365eb8dd6a85c9eaa7535ff"},
{file = "nvidia_nvjitlink_cu12-12.5.40-py3-none-manylinux2014_x86_64.whl", hash = "sha256:d9714f27c1d0f0895cd8915c07a87a1d0029a0aa36acaf9156952ec2a8a12189"},
{file = "nvidia_nvjitlink_cu12-12.5.40-py3-none-win_amd64.whl", hash = "sha256:c3401dc8543b52d3a8158007a0c1ab4e9c768fcbd24153a48c86972102197ddd"},
]
@ -7868,7 +7869,7 @@ websockets = ">=11,<13"
name = "redis"
version = "5.0.6"
description = "Python client for Redis database and key-value store"
optional = true
optional = false
python-versions = ">=3.7"
files = [
{file = "redis-5.0.6-py3-none-any.whl", hash = "sha256:c0d6d990850c627bbf7be01c5c4cbaadf67b48593e913bb71c9819c30df37eee"},
@ -10551,4 +10552,4 @@ local = ["ctransformers", "llama-cpp-python", "sentence-transformers"]
[metadata]
lock-version = "2.0"
python-versions = ">=3.10,<3.13"
content-hash = "0338efca20505c0d71b4f8c54136698789c1270ca54c4b0671e094d5a9b519d0"
content-hash = "9c2ef4f3ff5c7241dd347e163dc00d874178372dfe282791855a5e2f2670adf5"

View file

@ -52,7 +52,7 @@ psycopg = "^3.1.9"
psycopg-binary = "^3.1.9"
fastavro = "^1.8.0"
celery = { extras = ["redis"], version = "^5.3.6", optional = true }
redis = { version = "^5.0.1", optional = true }
redis = "^5.0.1"
flower = { version = "^2.0.0", optional = true }
metaphor-python = "^0.1.11"
pywin32 = { version = "^306", markers = "sys_platform == 'win32'" }