From a0deaba169ba6842a8377a8b3b51b296764b5227 Mon Sep 17 00:00:00 2001 From: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:34:00 +0200 Subject: [PATCH] maintain: remove needless default deps from tox envs --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ca4504a..c98371e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -113,6 +113,7 @@ commands = [ [tool.tox.env."cli"] description = "run mdformat's own CLI" +deps = [] commands = [ ["mdformat", { replace = "posargs", extend = true }], ] @@ -147,6 +148,7 @@ commands = [ [tool.tox.env."benchmark"] description = "benchmark mdformat against local doc files" +deps = [] commands = [ ["python", "-c", "print('Wrap mode: keep')"], ["python", "-m", "timeit", "from mdformat._cli import run", 'run(["README.md", "docs/", "--check"])'],