From 2db131be530b097bfe49817ab352c45bcf969049 Mon Sep 17 00:00:00 2001 From: js2264 Date: Tue, 15 Oct 2024 23:14:07 +0200 Subject: [PATCH] fix: missing deps --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f29a72f..1449cee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,8 @@ dependencies = [ "click>=7", "packaging", "psutil", - "setuptools" + "setuptools", + "typing-extensions", ] [project.urls] @@ -150,7 +151,7 @@ exclude_lines = [ [tool.hatch.envs.default.scripts] fix = "ruff check --fix src tests" lint = "ruff check src tests" -test = "pytest . --order-scope=module" +test = "pytest ." docs = "sphinx-autobuild docs docs/_build/html" [tool.hatch.envs.test]