From 5d7f573379b07258c510ef205ab8846090dca2e4 Mon Sep 17 00:00:00 2001 From: Moonlit Date: Tue, 30 Apr 2024 16:29:27 +0800 Subject: [PATCH] Fix: missing 'redis' package in requirements.txt (#622) ### What problem does this PR solve? This commit resolves an issue where the 'redis' package was inadvertently omitted from the requirements.txt file. The package has now been added to ensure all dependencies are correctly installed for the project. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 03bf1af6c..efa97d6ec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -100,6 +100,7 @@ python-dotenv==1.0.1 python-pptx==0.6.23 pytz==2024.1 PyYAML==6.0.1 +redis==5.0.3 regex==2023.12.25 requests==2.31.0 ruamel.yaml==0.18.6