From 0bd810beeff65033ae4fc84442e1863f5dfaf873 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 21:40:48 +0000 Subject: [PATCH] Bump redis from 2.10.6 to 4.5.3 Bumps [redis](https://github.com/redis/redis-py) from 2.10.6 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.6...v4.5.3) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pybloom/requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pybloom/requirements.txt b/pybloom/requirements.txt index 6bc2ab7..0fb5dfa 100644 --- a/pybloom/requirements.txt +++ b/pybloom/requirements.txt @@ -1,4 +1,4 @@ -redis==2.10.6 +redis==4.5.3 psutil==5.6.6 mock==2.0.0 mmh3==2.5.1 diff --git a/setup.py b/setup.py index c28b5dc..d463cea 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ url="https://github.com/nitxiodev/python-bloomfilter", packages=setuptools.find_packages(), install_requires=[ - 'redis==2.10.6', + 'redis==4.5.3', 'psutil==5.6.6', 'mmh3==2.5.1', 'bitarray==0.8.3',