Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,30 @@ packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.11"
pytest = "9.0.3"
pytest = "9.1.1"
pytest-asyncio = "1.4.0"
pytest-xdist = "3.8.0"
pytest-cov = "7.1.0"
allure-pytest = "2.13.5"
allure-pytest = "2.16.0"
pytest-html = "4.2.0"
httpx = "0.26.0"
httpx = "0.28.1"
requests = "2.34.2"
playwright = "^1.62"
selenium = "4.16.0"
selenium = "4.48.0"
faker = "40.37.0"
factory-boy = "3.3.0"
pydantic = "2.6.1"
pydantic-settings = "2.1.0"
pyyaml = "6.0.1"
python-dotenv = "1.2.2"
factory-boy = "3.3.3"
pydantic = "2.13.5"
pydantic-settings = "2.15.0"
pyyaml = "6.0.3"
python-dotenv = "1.2.3"
pydantic-extra-types = "2.11.1"
locust = "^2.31"
bandit = "1.7.6"
bandit = "1.9.4"
safety = ">=3.0.0"
sqlalchemy = "^2.0"
asyncpg = "0.29.0"
asyncpg = "0.31.0"
aiomysql = "0.3.2"
aiosqlite = "0.19.0"
aiosqlite = "0.22.1"
fastapi = "0.125.0"
python-jose = {version = ">=3.4.0,<4", extras = ["cryptography"]}
bcrypt = "5.0.0"
Expand All @@ -43,12 +43,12 @@ psutil = "7.2.2"

[tool.poetry.group.dev.dependencies]
black = "26.5.1"
ruff = "0.16.4"
ruff = "0.16.6"
mypy = "2.3.1"
pre-commit = "4.6.2"
isort = "8.0.1"
types-PyYAML = "6.0.12.20260815"
types-requests = "2.31.0.20240106"
types-requests = "2.33.0.20260712"
types-urllib3 = "1.26.25.14"
mkdocs = "^1.5.0"
mkdocs-material = "^9.5.0"
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ pydantic==2.6.1
pydantic-settings==2.1.0
pyyaml==6.0.1
python-dotenv==1.0.0
pydantic-extra-types==2.6.0
pydantic-extra-types==2.11.1

# Reporting (allure-pytest already listed above)
allure-python-commons==2.13.5
allure-python-commons==2.16.0

# Performance Testing
locust==2.46.4
pytest-benchmark==5.2.3
pytest-benchmark==5.3.0

# Security Testing
bandit==1.7.6
Expand All @@ -58,8 +58,8 @@ redis==5.0.1 # Redis client
psutil==5.9.8 # System monitoring

# Database ORM & Migration
sqlalchemy==2.0.25 # ORM for database operations
alembic==1.13.1 # Database migrations
sqlalchemy==2.0.52 # ORM for database operations
alembic==1.19.2 # Database migrations

# async HTTP
aiohttp>=3.14.3
Expand Down
Loading