Update requirements and insfra versions
This commit is contained in:
@@ -1,14 +1,18 @@
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
aio-pika==9.3.1
|
||||
redis==5.0.1
|
||||
asyncpg==0.29.0
|
||||
sqlalchemy==2.0.23
|
||||
alembic==1.12.1
|
||||
psycopg2-binary==2.9.9
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
pydantic-settings==2.1.0
|
||||
pydantic==2.5.2
|
||||
httpx==0.25.2
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
aio-pika==9.4.3
|
||||
redis==6.4.0
|
||||
asyncpg==0.30.0
|
||||
sqlalchemy==2.0.44
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
pydantic-settings==2.7.1
|
||||
pydantic==2.12.3
|
||||
httpx==0.28.1
|
||||
python-jose[cryptography]==3.3.0
|
||||
cryptography==44.0.0
|
||||
python-multipart==0.0.6
|
||||
email-validator==2.2.0
|
||||
pytz==2024.2
|
||||
|
||||
@@ -1,65 +1,69 @@
|
||||
# services/auth/requirements.txt
|
||||
|
||||
# FastAPI and ASGI
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
gunicorn==21.2.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
gunicorn==23.0.0
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.12.1
|
||||
aiosqlite==0.19.0
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
aiosqlite==0.20.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# Authentication & Security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
python-multipart==0.0.6
|
||||
bcrypt==4.0.1
|
||||
bcrypt==4.2.1
|
||||
cryptography==44.0.0
|
||||
PyJWT==2.10.1
|
||||
|
||||
# HTTP Client
|
||||
httpx==0.25.2
|
||||
aiohttp==3.9.1
|
||||
httpx==0.28.1
|
||||
aiohttp==3.11.10
|
||||
|
||||
# Data Validation
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.0.3
|
||||
email-validator==2.1.0
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Environment
|
||||
python-dotenv==1.0.0
|
||||
python-dotenv==1.0.1
|
||||
|
||||
# Logging and Monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Redis
|
||||
redis==5.0.1
|
||||
redis==6.4.0
|
||||
|
||||
# Message Queue
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Utilities
|
||||
python-dateutil==2.8.2
|
||||
pytz==2023.3
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Testing Dependencies
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
pytest-cov==4.1.0
|
||||
pytest-xdist==3.5.0
|
||||
pytest-mock==3.12.0
|
||||
pytest-timeout==2.2.0
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
pytest-cov==6.0.0
|
||||
pytest-xdist==3.6.1
|
||||
pytest-mock==3.14.0
|
||||
pytest-timeout==2.3.1
|
||||
pytest-html==4.1.1
|
||||
pytest-json-report==1.5.0
|
||||
aiosqlite==0.19.0
|
||||
|
||||
# Test Utilities
|
||||
factory-boy==3.3.0
|
||||
faker==20.1.0
|
||||
freezegun==1.2.2
|
||||
|
||||
factory-boy==3.3.1
|
||||
faker==33.1.0
|
||||
freezegun==1.5.1
|
||||
|
||||
# Development
|
||||
black==23.11.0
|
||||
isort==5.12.0
|
||||
flake8==6.1.0
|
||||
mypy==1.7.1
|
||||
pre-commit==3.6.0
|
||||
black==24.10.0
|
||||
isort==5.13.2
|
||||
flake8==7.1.1
|
||||
mypy==1.14.1
|
||||
pre-commit==4.0.1
|
||||
|
||||
@@ -1,14 +1,19 @@
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
sqlalchemy[asyncio]==2.0.23
|
||||
asyncpg==0.29.0
|
||||
psycopg2-binary==2.9.9
|
||||
alembic==1.12.1
|
||||
redis==5.0.1
|
||||
structlog==23.2.0
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
sqlalchemy[asyncio]==2.0.44
|
||||
asyncpg==0.30.0
|
||||
psycopg2-binary==2.9.10
|
||||
alembic==1.17.0
|
||||
redis==6.4.0
|
||||
structlog==25.4.0
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
typing-extensions>=4.5.0
|
||||
httpx==0.25.2
|
||||
PyJWT==2.8.0
|
||||
httpx==0.28.1
|
||||
PyJWT==2.10.1
|
||||
python-multipart==0.0.6
|
||||
cryptography==44.0.0
|
||||
prometheus-client==0.23.1
|
||||
aio-pika==9.4.3
|
||||
email-validator==2.2.0
|
||||
pytz==2024.2
|
||||
|
||||
52
services/external/requirements.txt
vendored
52
services/external/requirements.txt
vendored
@@ -1,56 +1,56 @@
|
||||
# services/external/requirements.txt
|
||||
# FastAPI and web framework
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
psycopg2-binary==2.9.9
|
||||
asyncpg==0.29.0
|
||||
aiosqlite==0.19.0
|
||||
alembic==1.12.1
|
||||
sqlalchemy==2.0.44
|
||||
psycopg2-binary==2.9.10
|
||||
asyncpg==0.30.0
|
||||
aiosqlite==0.20.0
|
||||
alembic==1.17.0
|
||||
|
||||
# HTTP clients for external APIs
|
||||
httpx==0.25.2
|
||||
aiofiles==23.2.0
|
||||
requests==2.31.0
|
||||
httpx==0.28.1
|
||||
aiofiles==24.1.0
|
||||
requests==2.32.3
|
||||
|
||||
# Data processing and time series
|
||||
pandas==2.1.3
|
||||
numpy==1.25.2
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
|
||||
# Validation and serialization
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.0.3
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication and security
|
||||
python-jose[cryptography]==3.3.0
|
||||
cryptography==44.0.0
|
||||
|
||||
# Logging and monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Message queues
|
||||
aio-pika==9.3.1
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Background job processing
|
||||
redis==5.0.1
|
||||
redis==6.4.0
|
||||
|
||||
# Date and time handling
|
||||
pytz==2023.3
|
||||
python-dateutil==2.8.2
|
||||
pytz==2024.2
|
||||
python-dateutil==2.9.0.post0
|
||||
|
||||
# XML parsing (for some APIs)
|
||||
lxml==4.9.3
|
||||
lxml==5.3.0
|
||||
|
||||
# Geospatial processing
|
||||
pyproj==3.6.1
|
||||
|
||||
# Note: pytest and testing dependencies are in tests/requirements.txt
|
||||
pyproj==3.7.1
|
||||
|
||||
# Development
|
||||
python-multipart==0.0.6
|
||||
|
||||
# External API specific
|
||||
beautifulsoup4==4.12.2 # For web scraping if needed
|
||||
xmltodict==0.13.0 # For XML API responses
|
||||
beautifulsoup4==4.12.3
|
||||
xmltodict==0.14.2
|
||||
|
||||
@@ -1,47 +1,51 @@
|
||||
# Core FastAPI dependencies
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
|
||||
# Database
|
||||
sqlalchemy[asyncio]==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.13.1
|
||||
sqlalchemy[asyncio]==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# Authentication & Security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
python-multipart==0.0.6
|
||||
cryptography==44.0.0
|
||||
|
||||
# HTTP Client
|
||||
httpx==0.25.2
|
||||
aiohttp==3.9.1
|
||||
httpx==0.28.1
|
||||
aiohttp==3.11.10
|
||||
|
||||
# Date parsing
|
||||
python-dateutil==2.8.2
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Machine Learning
|
||||
prophet==1.1.4
|
||||
scikit-learn==1.3.2
|
||||
pandas==2.1.4
|
||||
numpy==1.25.2
|
||||
joblib==1.3.2
|
||||
prophet==1.1.6
|
||||
scikit-learn==1.6.1
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
joblib==1.4.2
|
||||
|
||||
# Messaging
|
||||
aio-pika==9.3.1
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Scheduling
|
||||
APScheduler==3.10.4
|
||||
|
||||
# Monitoring & Logging
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Redis
|
||||
redis==6.4.0
|
||||
|
||||
# Development dependencies
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
pytest-cov==4.1.0
|
||||
|
||||
redis==5.0.1
|
||||
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
pytest-cov==6.0.0
|
||||
email-validator==2.2.0
|
||||
|
||||
@@ -1,38 +1,40 @@
|
||||
# services/inventory/requirements.txt
|
||||
# FastAPI and web framework
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
psycopg2-binary==2.9.9
|
||||
asyncpg==0.29.0
|
||||
aiosqlite==0.19.0
|
||||
alembic==1.12.1
|
||||
sqlalchemy==2.0.44
|
||||
psycopg2-binary==2.9.10
|
||||
asyncpg==0.30.0
|
||||
aiosqlite==0.20.0
|
||||
alembic==1.17.0
|
||||
|
||||
# Data processing
|
||||
pandas==2.1.3
|
||||
numpy==1.25.2
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
|
||||
# HTTP clients
|
||||
httpx==0.25.2
|
||||
aiofiles==23.2.0
|
||||
httpx==0.28.1
|
||||
aiofiles==24.1.0
|
||||
|
||||
# Validation and serialization
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.0.3
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication and security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
cryptography==44.0.0
|
||||
|
||||
# Logging and monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Message queues and Redis
|
||||
aio-pika==9.3.1
|
||||
redis>=4.0.0
|
||||
aio-pika==9.4.3
|
||||
redis==6.4.0
|
||||
|
||||
# Scheduling
|
||||
APScheduler==3.10.4
|
||||
@@ -42,4 +44,6 @@ python-barcode==0.15.1
|
||||
qrcode[pil]==7.4.2
|
||||
|
||||
# Development
|
||||
python-multipart==0.0.6
|
||||
python-multipart==0.0.6
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
@@ -1,45 +1,46 @@
|
||||
# FastAPI and dependencies
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
sse-starlette==1.6.5
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
sse-starlette==2.2.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.13.1
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# Authentication & Security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
python-multipart==0.0.6
|
||||
cryptography==44.0.0
|
||||
|
||||
# HTTP Client
|
||||
httpx==0.25.2
|
||||
aiofiles==23.2.1
|
||||
httpx==0.28.1
|
||||
aiofiles==24.1.0
|
||||
|
||||
# Email
|
||||
aiosmtplib==3.0.1
|
||||
email-validator==2.1.0
|
||||
aiosmtplib==3.0.2
|
||||
email-validator==2.2.0
|
||||
|
||||
# Messaging & Redis
|
||||
aio-pika==9.3.1
|
||||
redis==5.0.1
|
||||
aio-pika==9.4.3
|
||||
redis==6.4.0
|
||||
|
||||
# Template Engine
|
||||
jinja2==3.1.2
|
||||
jinja2==3.1.5
|
||||
|
||||
# Monitoring & Logging
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Utilities
|
||||
python-dateutil==2.8.2
|
||||
pytz==2023.3
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Development & Testing
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
pytest-mock==3.12.0
|
||||
httpx==0.25.2
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
pytest-mock==3.14.0
|
||||
|
||||
@@ -1,40 +1,44 @@
|
||||
# Orders Service Dependencies
|
||||
# FastAPI and web framework
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.13.1
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# HTTP clients
|
||||
httpx==0.25.2
|
||||
httpx==0.28.1
|
||||
|
||||
# Redis for caching
|
||||
redis==5.0.1
|
||||
redis==6.4.0
|
||||
|
||||
# Message queuing
|
||||
aio-pika==9.3.1
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Scheduling
|
||||
apscheduler==3.10.4
|
||||
APScheduler==3.10.4
|
||||
|
||||
# Logging and monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Date and time utilities
|
||||
python-dateutil==2.8.2
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Validation and utilities
|
||||
email-validator==2.1.0
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication
|
||||
python-jose[cryptography]==3.3.0
|
||||
cryptography==44.0.0
|
||||
|
||||
# Development dependencies (optional)
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
# Development dependencies
|
||||
python-multipart==0.0.6
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
|
||||
@@ -1,16 +1,21 @@
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.13.1
|
||||
structlog==23.2.0
|
||||
aiohttp==3.9.1
|
||||
redis==5.0.1
|
||||
celery==5.3.4
|
||||
cryptography>=41.0.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
structlog==25.4.0
|
||||
aiohttp==3.11.10
|
||||
redis==6.4.0
|
||||
celery==5.4.0
|
||||
cryptography==44.0.0
|
||||
python-jose[cryptography]==3.3.0
|
||||
httpx==0.25.2
|
||||
websockets==12.0
|
||||
prometheus-client==0.19.0
|
||||
httpx==0.28.1
|
||||
websockets==14.1
|
||||
prometheus-client==0.23.1
|
||||
python-multipart==0.0.6
|
||||
aio-pika==9.4.3
|
||||
email-validator==2.2.0
|
||||
psycopg2-binary==2.9.10
|
||||
pytz==2024.2
|
||||
|
||||
@@ -1,38 +1,42 @@
|
||||
# Production Service Dependencies
|
||||
# FastAPI and web framework
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.13.1
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# HTTP clients
|
||||
httpx==0.25.2
|
||||
httpx==0.28.1
|
||||
|
||||
# Logging and monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Message queues and Redis
|
||||
aio-pika==9.3.1
|
||||
redis>=4.0.0
|
||||
aio-pika==9.4.3
|
||||
redis==6.4.0
|
||||
|
||||
# Scheduling
|
||||
APScheduler==3.10.4
|
||||
|
||||
# Date and time utilities
|
||||
python-dateutil==2.8.2
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Validation and utilities
|
||||
email-validator==2.1.0
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication
|
||||
python-jose[cryptography]==3.3.0
|
||||
cryptography==44.0.0
|
||||
|
||||
# Development dependencies (optional)
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
# Development dependencies
|
||||
python-multipart==0.0.6
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
|
||||
@@ -1,63 +1,62 @@
|
||||
# Recipe Service Dependencies
|
||||
|
||||
# FastAPI and server
|
||||
fastapi==0.104.1
|
||||
uvicorn==0.24.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
python-multipart==0.0.6
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
psycopg2-binary==2.9.9
|
||||
asyncpg==0.29.0
|
||||
alembic==1.12.1
|
||||
sqlalchemy==2.0.44
|
||||
psycopg2-binary==2.9.10
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
|
||||
# Data validation
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.0.3
|
||||
email-validator==2.1.0
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# HTTP requests
|
||||
httpx==0.25.2
|
||||
requests==2.31.0
|
||||
httpx==0.28.1
|
||||
requests==2.32.3
|
||||
|
||||
# Async support
|
||||
asyncio-mqtt==0.16.1
|
||||
aiofiles==23.2.1
|
||||
asyncio-mqtt==0.16.2
|
||||
aiofiles==24.1.0
|
||||
|
||||
# Messaging
|
||||
aio-pika==9.3.1
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Caching (optional)
|
||||
redis==5.0.1
|
||||
# Caching
|
||||
redis==6.4.0
|
||||
python-redis-cache==0.1.0
|
||||
|
||||
# Monitoring and logging
|
||||
structlog==23.2.0
|
||||
python-json-logger==2.0.4
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
python-json-logger==3.3.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Date/time handling
|
||||
python-dateutil==2.8.2
|
||||
pytz==2023.3
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Data processing
|
||||
pandas==2.1.3
|
||||
numpy==1.25.2
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
|
||||
# Authentication and security
|
||||
python-jose[cryptography]==3.3.0
|
||||
python-multipart==0.0.6
|
||||
passlib[bcrypt]==1.7.4
|
||||
cryptography==44.0.0
|
||||
|
||||
# Environment management
|
||||
python-dotenv==1.0.0
|
||||
python-dotenv==1.0.1
|
||||
|
||||
# Testing
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
httpx==0.25.2
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
|
||||
# Development
|
||||
black==23.11.0
|
||||
flake8==6.1.0
|
||||
mypy==1.7.1
|
||||
black==24.10.0
|
||||
flake8==7.1.1
|
||||
mypy==1.14.1
|
||||
|
||||
@@ -1,40 +1,42 @@
|
||||
# services/sales/requirements.txt
|
||||
# FastAPI and web framework
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
psycopg2-binary==2.9.9
|
||||
asyncpg==0.29.0
|
||||
aiosqlite==0.19.0
|
||||
alembic==1.12.1
|
||||
sqlalchemy==2.0.44
|
||||
psycopg2-binary==2.9.10
|
||||
asyncpg==0.30.0
|
||||
aiosqlite==0.20.0
|
||||
alembic==1.17.0
|
||||
|
||||
# Data processing
|
||||
pandas==2.1.3
|
||||
numpy==1.25.2
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
|
||||
# HTTP clients
|
||||
httpx==0.25.2
|
||||
aiofiles==23.2.0
|
||||
httpx==0.28.1
|
||||
aiofiles==24.1.0
|
||||
|
||||
# Validation and serialization
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.0.3
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication and security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
cryptography==44.0.0
|
||||
|
||||
# Logging and monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Message queues
|
||||
aio-pika==9.3.1
|
||||
|
||||
# Note: pytest and testing dependencies are in tests/requirements.txt
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Development
|
||||
python-multipart==0.0.6
|
||||
redis==5.0.1
|
||||
redis==6.4.0
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
@@ -1,42 +1,44 @@
|
||||
# services/suppliers/requirements.txt
|
||||
# FastAPI and web framework
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
psycopg2-binary==2.9.9
|
||||
asyncpg==0.29.0
|
||||
aiosqlite==0.19.0
|
||||
alembic==1.12.1
|
||||
sqlalchemy==2.0.44
|
||||
psycopg2-binary==2.9.10
|
||||
asyncpg==0.30.0
|
||||
aiosqlite==0.20.0
|
||||
alembic==1.17.0
|
||||
|
||||
# Data processing
|
||||
pandas==2.1.3
|
||||
numpy==1.25.2
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
|
||||
# HTTP clients
|
||||
httpx==0.25.2
|
||||
aiofiles==23.2.0
|
||||
httpx==0.28.1
|
||||
aiofiles==24.1.0
|
||||
|
||||
# Validation and serialization
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.0.3
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication and security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
cryptography==44.0.0
|
||||
|
||||
# Logging and monitoring
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Message queues
|
||||
aio-pika==9.3.1
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Additional for supplier management
|
||||
python-dateutil==2.8.2
|
||||
email-validator==2.1.0
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Development
|
||||
python-multipart==0.0.6
|
||||
redis==5.0.1
|
||||
redis==6.4.0
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.12.1
|
||||
psycopg2-binary==2.9.9
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
httpx==0.25.2
|
||||
redis==5.0.1
|
||||
aio-pika==9.3.0
|
||||
prometheus-client==0.17.1
|
||||
python-json-logger==2.0.4
|
||||
pytz==2023.3
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
httpx==0.28.1
|
||||
redis==6.4.0
|
||||
aio-pika==9.4.3
|
||||
prometheus-client==0.23.1
|
||||
python-json-logger==3.3.0
|
||||
pytz==2024.2
|
||||
python-logstash==0.4.8
|
||||
structlog==23.2.0
|
||||
structlog==25.4.0
|
||||
python-jose[cryptography]==3.3.0
|
||||
stripe==7.4.0
|
||||
stripe==11.3.0
|
||||
python-multipart==0.0.6
|
||||
cryptography==44.0.0
|
||||
email-validator==2.2.0
|
||||
|
||||
@@ -1,54 +1,54 @@
|
||||
# services/training/requirements.txt
|
||||
# FastAPI and server
|
||||
fastapi==0.104.1
|
||||
uvicorn[standard]==0.24.0
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
python-multipart==0.0.6
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
asyncpg==0.29.0
|
||||
alembic==1.12.1
|
||||
psycopg2-binary==2.9.9
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# ML libraries
|
||||
prophet==1.1.5
|
||||
scikit-learn==1.3.2
|
||||
pandas==2.1.3
|
||||
numpy==1.24.4
|
||||
joblib==1.3.2
|
||||
prophet==1.1.6
|
||||
scikit-learn==1.6.1
|
||||
pandas==2.2.3
|
||||
numpy==2.2.2
|
||||
joblib==1.4.2
|
||||
|
||||
# HTTP client
|
||||
httpx==0.25.2
|
||||
httpx==0.28.1
|
||||
|
||||
# Validation
|
||||
pydantic==2.5.0
|
||||
pydantic-settings==2.1.0
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
python-multipart==0.0.6
|
||||
cryptography==44.0.0
|
||||
|
||||
# Messaging
|
||||
aio-pika==9.3.1
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Monitoring and logging
|
||||
structlog==23.2.0
|
||||
prometheus-client==0.19.0
|
||||
structlog==25.4.0
|
||||
prometheus-client==0.23.1
|
||||
|
||||
# Development and testing
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
pytest-mock==3.12.0
|
||||
httpx==0.25.2
|
||||
pytest-cov==4.1.0
|
||||
coverage==7.3.2
|
||||
psutil==5.9.0
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
pytest-mock==3.14.0
|
||||
pytest-cov==6.0.0
|
||||
coverage==7.6.9
|
||||
psutil==6.1.1
|
||||
|
||||
# Utilities
|
||||
python-dateutil==2.8.2
|
||||
pytz==2023.3
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Hyperparameter optimization
|
||||
optuna==3.4.0
|
||||
redis==5.0.1
|
||||
optuna==4.2.0
|
||||
redis==6.4.0
|
||||
|
||||
Reference in New Issue
Block a user