From 4a77b97725e310903a45e98177ac660e1ad9b5de Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Sun, 22 Feb 2026 23:49:34 -0500 Subject: [PATCH] Move tomlkit dependency to dev group (#5990) tomlkit is used only in the packaging tests which are not ordinarily run as part of the normal workflow of a user or downstream packager. Signed-off-by: Yaakov Selkowitz --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7a12eed1a..6a300985a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,9 +57,11 @@ pybind11 = "pybind11.share.pkgconfig" test = [ "pytest", "build", - "tomlkit", ] -dev = [{ include-group = "test" }] +dev = [ + "tomlkit", + { include-group = "test" } +] [tool.scikit-build]