From 52fc19471d2d690657811d695e40e85efce0dfc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:14:10 +0000 Subject: [PATCH] Update redis requirement from ~=5.1.0 to >=5.1,<5.3 Updates the requirements on [redis](https://github.com/redis/redis-py) to permit the latest version. - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v5.1.0...v5.2.0) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dab20fdde..cfebc3b5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,7 @@ dev = [ "urllib3", ] postgres = ["psycopg2-binary~=2.9.0"] -redis = ["redis~=5.1.0"] +redis = ["redis>=5.1,<5.3"] [build-system] build-backend = "setuptools.build_meta"