From 8f4ac3284ef1d037bded9b60eb93051c1490f5c2 Mon Sep 17 00:00:00 2001 From: Bruno Domingues Date: Wed, 1 Oct 2025 18:16:21 -0300 Subject: [PATCH] SIENTIAPDE-1243: Remove Redis dependency and related configurations. --- README.md | 1 - pyproject.toml | 4 ---- requirements.txt | 1 - 3 files changed, 6 deletions(-) diff --git a/README.md b/README.md index 28a38c3..ce79521 100644 --- a/README.md +++ b/README.md @@ -267,7 +267,6 @@ The **PredictionProcess** workflow implements the core prediction pipeline for M flowchart LR A[1. get_last_timestamp] --> B[2. input_gate] --> C[3. request_transform] --> D[4. mlflow_response_gate] --> E[5. mlflow_content_gate] --> F[6. request_predict] --> G[7. mlflow_response_gate] --> H[8. format_and_export_prediction🔃] - A -.-> Redis[(Redis)] C -.-> MLFlow[MLFlow] F -.-> MLFlow[MLFlow] G -.-> Filters[MLFlow Filters] diff --git a/pyproject.toml b/pyproject.toml index 85823aa..a7d7439 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -97,10 +97,6 @@ ignore_missing_imports = true module = "prometheus_client.*" ignore_missing_imports = true -[[tool.mypy.overrides]] -module = "redis.*" -ignore_missing_imports = true - [[tool.mypy.overrides]] module = "sientia.*" ignore_missing_imports = true diff --git a/requirements.txt b/requirements.txt index 8fcde0c..685fa78 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ temporalio psycopg2-binary sqlalchemy -redis git+ssh://git@github.com/Aignosi/sientia-dataops-library.git@1.4.6 git+ssh://git@github.com/Aignosi/sientia-mlops-library.git@0.39.0 prometheus-client