From e2b7e90a9437838ddc55b754a33a8ff0870be025 Mon Sep 17 00:00:00 2001 From: vladvildanov Date: Tue, 27 May 2025 10:55:34 +0300 Subject: [PATCH] Updated redis-py dependency to always point to a latest version --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d54e885..e81b5ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ description = "Entra ID credentials provider implementation for Redis-py client" readme = "README.md" requires-python = ">=3.8" dependencies = [ - "redis~=5.3.0", + "redis>=5.3.0", "PyJWT~=2.9.0", "msal~=1.31.0", "azure-identity~=1.20.0" diff --git a/requirements.txt b/requirements.txt index 0346219..b1b1ef6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ PyJWT~=2.9.0 msal~=1.31.0 azure-identity~=1.20.0 -redis~=5.3.0 +redis>=5.3.0 requests~=2.32.3 \ No newline at end of file