From a810e29f7656887f37a4276f4b9f9b185c4be134 Mon Sep 17 00:00:00 2001 From: fztee Date: Fri, 7 Nov 2025 16:29:05 +0100 Subject: [PATCH] chore: update file 'pyproject.toml' (backend package). - remove unused dependency 'httpx'. - rename optional dependency 'dev' to 'tests'. --- backend/pyproject.toml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index d8297a7..2a8e85d 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -19,8 +19,12 @@ dependencies = [ ] [project.optional-dependencies] -dev = [ - "httpx==0.28.1", +lints = [ + "bandit==1.8.6", + "mypy==1.18.2", + "ruff==0.14.4", +] +tests = [ "pytest==8.4.2", "pytest-asyncio==1.2.0", "pytest-benchmark==5.2.1", @@ -28,11 +32,6 @@ dev = [ "pytest-mock==3.15.1", "pytest-xdist==3.8.0", ] -lints = [ - "bandit==1.8.6", - "mypy==1.18.2", - "ruff==0.14.4", -] [tool.pytest.ini_options] asyncio_mode = "auto"