diff --git a/pyproject.toml b/pyproject.toml index a4031a5..b3b57f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.26"] +requires = ["hatchling"] build-backend = "hatchling.build" [project] @@ -18,7 +18,7 @@ dependencies = [ dev = [ "mypy>=1.13,<2", "pytest>=8.3,<9", - "pytest-asyncio>=0.24,<1", + "pytest-anyio>=0.0.0,<1", "ruff>=0.8,<1", ] @@ -26,16 +26,15 @@ dev = [ packages = ["app"] [tool.pytest.ini_options] -addopts = "-q" -asyncio_mode = "auto" testpaths = ["tests"] +addopts = "-q" [tool.ruff] +line-length = 120 target-version = "py312" -line-length = 100 [tool.ruff.lint] -select = ["E", "F", "I", "UP", "B", "ASYNC"] +select = ["E", "F", "I", "B", "UP"] [tool.mypy] python_version = "3.12"