From a65581ff192a1fd7b020d4e6b28aa3c59c15a1a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Jan 2026 07:07:51 +0000 Subject: [PATCH] Update redis requirement in /python/flask-postgres Updates the requirements on [redis](https://github.com/redis/redis-py) to permit the latest version. - [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/v5.2.0...v7.1.0) --- updated-dependencies: - dependency-name: redis dependency-version: 7.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- python/flask-postgres/pyproject.toml | 2 +- python/flask-postgres/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/flask-postgres/pyproject.toml b/python/flask-postgres/pyproject.toml index 9561bfaf..a7ef78cf 100644 --- a/python/flask-postgres/pyproject.toml +++ b/python/flask-postgres/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "marshmallow>=4.1,<5.0", "flask-marshmallow>=1.3,<2.0", "celery>=5.6,<6.0", - "redis>=5.2,<6.0", + "redis>=5.2,<8.0", "PyJWT>=2.10,<3.0", "python-dotenv>=1.0", "gunicorn>=23.0", diff --git a/python/flask-postgres/requirements.txt b/python/flask-postgres/requirements.txt index 3b563815..c3feb6d4 100644 --- a/python/flask-postgres/requirements.txt +++ b/python/flask-postgres/requirements.txt @@ -16,7 +16,7 @@ python-slugify>=8.0 # Task Processing celery>=5.6,<6.0 -redis>=5.2,<6.0 +redis>=5.2,<8.0 # Authentication PyJWT>=2.10,<3.0