Refactor code structure for improved readability and maintainability
Some checks failed
Backend CI / lint (push) Failing after 5m1s
Backend CI / test (push) Failing after 4m30s

This commit is contained in:
JSC
2025-08-22 21:18:04 +02:00
parent 821093f64f
commit 28faca55bc
3 changed files with 146 additions and 26 deletions

View File

@@ -3,7 +3,7 @@ name = "sdb"
version = "2.0.0"
description = "Backend for the SDB v2"
readme = "README.md"
requires-python = ">=3.13"
requires-python = ">=3.12"
dependencies = [
"aiosqlite==0.21.0",
"apscheduler==3.11.0",
@@ -29,7 +29,7 @@ dev-dependencies = [
"mypy==1.17.1",
"pytest==8.4.1",
"pytest-asyncio==1.1.0",
"ruff==0.12.9",
"ruff==0.12.10",
]
[tool.mypy]
@@ -37,7 +37,7 @@ strict = true
exclude = ["venv", ".venv", "alembic"]
[tool.ruff]
target-version = "py313"
target-version = "py312"
exclude = ["alembic"]
[tool.ruff.lint]