From c11ac45343d373c450af3f12a3941f9ff337244d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 10:54:45 +0000 Subject: [PATCH] Bump redis from 4.5.2 to 5.0.1 Bumps [redis](https://github.com/redis/redis-py) from 4.5.2 to 5.0.1. - [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/v4.5.2...v5.0.1) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 461d8b8c..dc8a047b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ click==8.1.3 -redis==4.5.2 +redis==5.0.1 structlog==22.3.0 diff --git a/setup.py b/setup.py index 9bc3b0ea..4ebc1ef4 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.rst", encoding="utf-8") as file: long_description = file.read() -install_requires = ["click", "redis>=3.3.0,<5", "structlog"] +install_requires = ["click", "redis>=3.3.0,<6", "structlog"] tests_require = install_requires + ["freezefrog", "pytest", "psutil"]