From 4c9c2a7727606e9ee856a12c89b0ea01835c3e39 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:56:22 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0f223c4..f2f31a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,27 @@ urls.Homepage = "https://github.com/tox-dev/toml-fmt-common" urls.Source = "https://github.com/tox-dev/toml-fmt-common" urls.Tracker = "https://github.com/tox-dev/toml-fmt-common/issues" +[dependency-groups] +dev = [ + { include-group = "test" }, + { include-group = "type" }, +] +test = [ + "covdefaults>=2.3", + "pytest>=8.3.2", + "pytest-cov>=5", + "pytest-mock>=3.14", +] +type = [ + "mypy==1.11.2", + { include-group = "test" }, +] +pkg-meta = [ + "check-wheel-contents>=0.6", + "twine>=5.1.1", + "uv>=0.4.17", +] + [tool.hatch] version.source = "vcs" @@ -112,24 +133,3 @@ run.plugins = [ [tool.mypy] show_error_codes = true strict = true - -[dependency-groups] -dev = [ - { include-group = "test" }, - { include-group = "type" }, -] -pkg-meta = [ - "check-wheel-contents>=0.6", - "twine>=5.1.1", - "uv>=0.4.17", -] -test = [ - "covdefaults>=2.3", - "pytest>=8.3.2", - "pytest-cov>=5", - "pytest-mock>=3.14", -] -type = [ - "mypy==1.11.2", - { include-group = "test" }, -]