From 21e897065c855b34da81bec6abfa94921bc3508c Mon Sep 17 00:00:00 2001 From: stefan6419846 <96178532+stefan6419846@users.noreply.github.com> Date: Tue, 1 Sep 2026 13:06:44 +0200 Subject: [PATCH] Exclude benchmarks from wheel distributions Closes #1552. --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 960fa66a6..3e4906ae3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,6 +106,11 @@ Release Information path = "CHANGELOG.rst" pattern = "(^v.+?)\nv" +[tool.hatch.build.targets.wheel] +exclude = [ + "/jsonschema/benchmarks", +] + [tool.coverage.html] show_contexts = true skip_covered = false