Update requirements.txt
Browse files- requirements.txt +6 -5
requirements.txt
CHANGED
|
@@ -27,7 +27,7 @@ tavily-python>=0.3.0
|
|
| 27 |
|
| 28 |
# File Handling
|
| 29 |
pathlib2>=2.3.7
|
| 30 |
-
uuid-utils>=0.3.0
|
| 31 |
|
| 32 |
# Development and Utilities
|
| 33 |
python-dateutil>=2.8.2
|
|
@@ -77,11 +77,12 @@ plotly>=5.15.0
|
|
| 77 |
|
| 78 |
# Database (Optional)
|
| 79 |
sqlalchemy>=2.0.0
|
| 80 |
-
|
| 81 |
|
| 82 |
# Caching and Performance
|
| 83 |
redis>=5.0.0
|
| 84 |
-
memcached
|
|
|
|
| 85 |
diskcache>=5.6.0
|
| 86 |
|
| 87 |
# Monitoring and Logging
|
|
@@ -101,8 +102,8 @@ azure-storage-blob>=12.18.0
|
|
| 101 |
|
| 102 |
# Internationalization
|
| 103 |
babel>=2.13.0
|
| 104 |
-
python-babel
|
| 105 |
|
| 106 |
# Task Queue (Optional)
|
| 107 |
celery>=5.3.0
|
| 108 |
-
redis-py
|
|
|
|
| 27 |
|
| 28 |
# File Handling
|
| 29 |
pathlib2>=2.3.7
|
| 30 |
+
uuid-utils>=0.3.0 # ✅ valid package
|
| 31 |
|
| 32 |
# Development and Utilities
|
| 33 |
python-dateutil>=2.8.2
|
|
|
|
| 77 |
|
| 78 |
# Database (Optional)
|
| 79 |
sqlalchemy>=2.0.0
|
| 80 |
+
sqlite-utils>=3.34 # ✅ corrected (was sqlite3-utils, which doesn’t exist)
|
| 81 |
|
| 82 |
# Caching and Performance
|
| 83 |
redis>=5.0.0
|
| 84 |
+
# ⚠️ Removed "memcached" (not on PyPI, it’s a system package)
|
| 85 |
+
pymemcache>=4.0.0 # ✅ replacement for using memcached from Python
|
| 86 |
diskcache>=5.6.0
|
| 87 |
|
| 88 |
# Monitoring and Logging
|
|
|
|
| 102 |
|
| 103 |
# Internationalization
|
| 104 |
babel>=2.13.0
|
| 105 |
+
# ⚠️ Removed "python-babel" (duplicate, same as babel)
|
| 106 |
|
| 107 |
# Task Queue (Optional)
|
| 108 |
celery>=5.3.0
|
| 109 |
+
# ⚠️ Removed "redis-py" (old alias, use "redis" above)
|