diff --git a/poetry.lock b/poetry.lock index 4a797bf..1d7269a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2970,15 +2970,15 @@ files = [ [[package]] name = "redis" -version = "8.0.0" +version = "8.0.1" description = "Python client for Redis database and key-value store" optional = true python-versions = ">=3.10" groups = ["main"] markers = "extra == \"all\" or extra == \"dev\" or extra == \"redis\"" files = [ - {file = "redis-8.0.0-py3-none-any.whl", hash = "sha256:c938c18338585009f0bc310f4c7e4e4b4d37639356c4ac072cedf3af570c8dc7"}, - {file = "redis-8.0.0.tar.gz", hash = "sha256:a00c5355432051ac14e593b8b197fc76c887ee12d55a0984f69328a1115fdc49"}, + {file = "redis-8.0.1-py3-none-any.whl", hash = "sha256:47daa35a058c23468d6437f17a8c76882cb316b838ef763036af99b96cedd743"}, + {file = "redis-8.0.1.tar.gz", hash = "sha256:afc5a7a2f5a084f5b1880dec548dd45be17db7e43c82a30d84f952aefb05cfb0"}, ] [package.dependencies] @@ -2987,7 +2987,7 @@ async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\ [package.extras] circuit-breaker = ["pybreaker (>=1.4.0)"] hiredis = ["hiredis (>=3.2.0)"] -jwt = ["pyjwt (>=2.12.0)"] +jwt = ["pyjwt (>=2.13.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (>=20.0.1)", "requests (>=2.31.0)"] otel = ["opentelemetry-api (>=1.39.1)", "opentelemetry-exporter-otlp-proto-http (>=1.39.1)", "opentelemetry-sdk (>=1.39.1)"] xxhash = ["xxhash (>=3.6.0,<3.7.0)"] @@ -3639,4 +3639,4 @@ sqlite = ["aiosqlite"] [metadata] lock-version = "2.1" python-versions = ">=3.11" -content-hash = "d2a58d5a0166beb6f939b8cd356b993218f56120bbcbc8c7b573e58f7bfab424" +content-hash = "ad10f91a7b14203e0330cb4540e8b747bd1d64751738dc333f2475829c470b52" diff --git a/pyproject.toml b/pyproject.toml index dd13f11..98350f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ dependencies = [ [project.optional-dependencies] # Storage backends redis = [ - "redis>=5.0.0", + "redis>=8.0.1", ] sqlite = [ @@ -80,7 +80,7 @@ mysql = [ # All storage backends all = [ - "redis>=5.0.0", + "redis>=8.0.1", "aiosqlite>=0.19.0", "asyncpg>=0.29.0", "aiomysql>=0.2.0", @@ -113,7 +113,7 @@ dev = [ "flower>=2.0.0", # Celery web UI # Include all storage backends for development - "redis>=5.0.0", + "redis>=8.0.1", "aiosqlite>=0.19.0", "asyncpg>=0.29.0", ]