From a92436a7fa7bc660ea738771c9c02265363011f1 Mon Sep 17 00:00:00 2001 From: Blair Conrad Date: Wed, 16 Oct 2024 13:16:38 -0400 Subject: [PATCH] chore: Remove check_dependencies from check duty The check_dependencies duty no longer exists. Related to commit 562312469fa9a99e968917813d101569a99be43e: https://github.com/pawamoy/duty/commit/562312469fa9a99e968917813d101569a99be43e --- duties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/duties.py b/duties.py index 240905c..4357e0b 100644 --- a/duties.py +++ b/duties.py @@ -53,7 +53,7 @@ def changelog(ctx: Context, bump: str = "") -> None: ctx.run(tools.git_changelog(bump=bump or None), title="Updating changelog") -@duty(pre=["check_quality", "check_types", "check_docs", "check_dependencies", "check-api"]) +@duty(pre=["check_quality", "check_types", "check_docs", "check-api"]) def check(ctx: Context) -> None: """Check it all!"""