From 10fb6e88524ef41bfcf2ec236a638be8b2602155 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Mon, 13 Oct 2025 15:29:36 +0200 Subject: [PATCH] chore: add dependencies for tests --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ed32eed..0466371 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ authors = [ requires-python = ">=3.13" dependencies = [ "regex>=2025.9.18", + "requests>=2.32.5", ] [build-system] @@ -36,3 +37,10 @@ commit_args = "" setup_hooks = [] pre_commit_hooks = [] post_commit_hooks = [] + +[dependency-groups] +test = [ + "mypy>=1.18.2", + "pytest>=8.4.2", + "pytest-cov>=7.0.0", +]