From ab7a2979face517d175c6df3057cbad92aab11de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Mar 2023 14:35:47 +0000 Subject: [PATCH] Bump redis from 2.10.6 to 4.4.4 Bumps [redis](https://github.com/redis/redis-py) from 2.10.6 to 4.4.4. - [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.4.4) --- 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..3a63fd4 100644 --- a/pybloom/requirements.txt +++ b/pybloom/requirements.txt @@ -1,4 +1,4 @@ -redis==2.10.6 +redis==4.4.4 psutil==5.6.6 mock==2.0.0 mmh3==2.5.1 diff --git a/setup.py b/setup.py index c28b5dc..8770ba7 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.4.4', 'psutil==5.6.6', 'mmh3==2.5.1', 'bitarray==0.8.3',