From f5264189cd72c37b96b5d94d173eaff26940f418 Mon Sep 17 00:00:00 2001 From: gwdio Date: Tue, 19 May 2026 17:46:26 -0400 Subject: [PATCH] Updated pyproject.toml to include CI group Upstream CI check requires black, toml, and flake8. Exposing these in a create-verify group. The two repositories are coupled already, so this addition does not cause too much regression. --- pyproject.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5e413ef..3f641b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,11 +8,18 @@ pre-commit = [ tox = [ "tox == 4.54.0", ] -test = [ - "pytest == 9.0.3", +verify = [ "toml == 0.10.2", "flake8 == 7.3.0", +] +create-verify = [ + "black == 25.1.0", + {include-group = "verify"}, +] +test = [ + "pytest == 9.0.3", {include-group = "briefcase"}, + {include-group = "verify"}, ] dev = [ {include-group = "briefcase"},