From 545c1b6460ccebcb40b3c71aade7d72546f47f36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 21:38:12 +0000 Subject: [PATCH] Bump redis from 2.10.5 to 4.5.3 Bumps [redis](https://github.com/redis/redis-py) from 2.10.5 to 4.5.3. - [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/2.10.5...v4.5.3) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements_extras.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements_extras.txt b/requirements_extras.txt index c4e860f..5b100ef 100644 --- a/requirements_extras.txt +++ b/requirements_extras.txt @@ -17,5 +17,5 @@ cassandra-driver==3.25.0 PyMySQL==0.9.3 kafka-python==2.0.2 -redis==2.10.5 +redis==4.5.3 ujson==1.35 diff --git a/setup.py b/setup.py index 032b461..a8c81d1 100644 --- a/setup.py +++ b/setup.py @@ -91,12 +91,12 @@ # https://packaging.python.org/en/latest/requirements.html install_requires=requirements, extras_require={ - 'redis': ['redis>=2.10,<3', 'ujson>=1.33,<2'], + 'redis': ['redis>=2.10,<5', 'ujson>=1.33,<2'], 'test': [ 'cassandra-driver>=3.25,<3.26', 'PyMySQL>=0.7,<0.10', 'kafka-python>=2.0.2,<2.1', - 'redis>=2.10,<3', + 'redis>=2.10,<5', 'ujson>=1.33,<2', ], },