From 699e83e4e18d348378e16c882076dff9051caa09 Mon Sep 17 00:00:00 2001 From: liblaf <30631553+liblaf@users.noreply.github.com> Date: Sat, 1 Feb 2025 15:52:43 +0800 Subject: [PATCH] chore: ignore W002 in check-wheel-contents Adds `ignore = ["W002"]` to the `[tool.check-wheel-contents]` section in `pyproject.toml` to suppress the W002 warning during wheel content checks. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index adfc84f9..459c8f12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,5 +43,8 @@ readme = "docs/README.md" requires-python = ">=3.12" version = "0.0.0" +[tool.check-wheel-contents] +ignore = ["W002"] + [tool.uv] default-groups = ["build", "dev", "docs"]