From c70442e9dcddceead16dc76534ba48421a1c6325 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 10:42:12 +0000 Subject: [PATCH] Bump redis from 4.5.2 to 5.0.7 Bumps [redis](https://github.com/redis/redis-py) from 4.5.2 to 5.0.7. - [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.7) --- 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 cd10926..768b4d8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ click==8.1.7 -redis==4.5.2 +redis==5.0.7 structlog==24.1.0 croniter diff --git a/setup.py b/setup.py index de4788e..29480e7 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,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>=5.0.7,<6", "structlog"] tests_require = install_requires + ["freezefrog", "pytest", "psutil"]