Moonlit
commited on
Commit
·
b39c111
1
Parent(s):
5db8a67
Fix: missing 'redis' package in requirements.txt (#622)
Browse files### 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 -0
requirements.txt
CHANGED
@@ -100,6 +100,7 @@ python-dotenv==1.0.1
|
|
100 |
python-pptx==0.6.23
|
101 |
pytz==2024.1
|
102 |
PyYAML==6.0.1
|
|
|
103 |
regex==2023.12.25
|
104 |
requests==2.31.0
|
105 |
ruamel.yaml==0.18.6
|
|
|
100 |
python-pptx==0.6.23
|
101 |
pytz==2024.1
|
102 |
PyYAML==6.0.1
|
103 |
+
redis==5.0.3
|
104 |
regex==2023.12.25
|
105 |
requests==2.31.0
|
106 |
ruamel.yaml==0.18.6
|