From 22f806f6fa147d2c6c674a617c63ba4bcea5af00 Mon Sep 17 00:00:00 2001 From: GSRN Date: Mon, 15 Sep 2025 20:58:47 +0200 Subject: [PATCH] chore: Update Python dependencies in service adapters requirements ### Summary of Changes - Removed specific version numbers from Python dependencies in `requirements.txt` for service adapters to allow for more flexible updates. - Ensured consistency in dependency management across the project. ### Expected Results - Improved maintainability and ease of updates for Python packages in the service adapters. --- services/service-adapters/requirements.txt | 54 +++++++++++----------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/services/service-adapters/requirements.txt b/services/service-adapters/requirements.txt index f821d42..07f4b66 100644 --- a/services/service-adapters/requirements.txt +++ b/services/service-adapters/requirements.txt @@ -1,33 +1,33 @@ -fastapi==0.104.1 -uvicorn[standard]==0.24.0 -pydantic==2.5.0 -httpx==0.25.2 -redis==5.0.1 -psycopg2-binary==2.9.9 -sqlalchemy==2.0.23 -alembic==1.13.1 -python-multipart==0.0.6 -python-jose[cryptography]==3.3.0 -passlib[bcrypt]==1.7.4 -python-dotenv==1.0.0 -websockets==12.0 -aiofiles==23.2.1 +fastapi +uvicorn[standard] +pydantic +httpx +redis +psycopg2-binary +sqlalchemy +alembic +python-multipart +python-jose[cryptography] +passlib[bcrypt] +python-dotenv +websockets +aiofiles # Testing and Quality -pytest==7.4.3 -pytest-cov==4.1.0 -pytest-asyncio==0.21.1 -pytest-html==4.1.1 -pytest-xdist==3.3.1 -coverage==7.3.2 +pytest +pytest-cov +pytest-asyncio +pytest-html +pytest-xdist +coverage # Code Quality -flake8==6.1.0 -black==23.11.0 -isort==5.12.0 -mypy==1.7.1 -bandit==1.7.5 -safety==2.3.5 +flake8 +black +isort +mypy +bandit +safety # SonarQube Integration -pysonar==1.2.0.2419 \ No newline at end of file +pysonar \ No newline at end of file