From 0a10ae713f2eaa7741c22ffa49fb2a2d91f9e24e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 10:08:39 +0000 Subject: [PATCH] Bump redis from 4.5.2 to 5.0.6 Bumps [redis](https://github.com/redis/redis-py) from 4.5.2 to 5.0.6. - [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.6) --- 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 cd109265..9c63ac14 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ click==8.1.7 -redis==4.5.2 +redis==5.0.6 structlog==24.1.0 croniter diff --git a/setup.py b/setup.py index bbd3fb65..ef3b2ebe 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"]