From be64fe48e972819a2f875c845686e51d2aaad27f Mon Sep 17 00:00:00 2001 From: Antoine Henning Date: Mon, 27 Oct 2025 14:48:47 +0100 Subject: [PATCH] Update redis dependency to version 7 Bumped redis from ^6 to ^7 in pyproject.toml and updated poetry.lock accordingly. --- poetry.lock | 11 ++++++----- pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index 23a0464..98975ab 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand. [[package]] name = "annotated-types" @@ -939,20 +939,21 @@ files = [ [[package]] name = "redis" -version = "6.2.0" +version = "7.0.0" description = "Python client for Redis database and key-value store" optional = false python-versions = ">=3.9" groups = ["main", "dev"] files = [ - {file = "redis-6.2.0-py3-none-any.whl", hash = "sha256:c8ddf316ee0aab65f04a11229e94a64b2618451dab7a67cb2f77eb799d872d5e"}, - {file = "redis-6.2.0.tar.gz", hash = "sha256:e821f129b75dde6cb99dd35e5c76e8c49512a5a0d8dfdc560b2fbd44b85ca977"}, + {file = "redis-7.0.0-py3-none-any.whl", hash = "sha256:1e66c8355b3443af78367c4937484cd875fdf9f5f14e1fed14aa95869e64f6d1"}, + {file = "redis-7.0.0.tar.gz", hash = "sha256:6546ada54354248a53a47342d36abe6172bb156f23d24f018fda2e3c06b9c97a"}, ] [package.dependencies] 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.9.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (>=20.0.1)", "requests (>=2.31.0)"] @@ -1182,4 +1183,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = "^3.9" -content-hash = "c222e212fb4102ee769c8763c729ebb09c83d5fa3b043ce78d4078af3dde5d6c" +content-hash = "f107ca1d8cdd16a51779911e1f70fb46204c6aea3f088717b18268c2bc982d2c" diff --git a/pyproject.toml b/pyproject.toml index d541773..396fb5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ keywords = [ [tool.poetry.dependencies] python = "^3.9" taskiq = ">=0.11.12,<1" -redis = "^6" +redis = "^7" [tool.poetry.group.dev.dependencies] pytest = "^8"