From 1d0ac3a66855ca3229a5d3cf2785982d35cd66d0 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sun, 13 Jul 2025 18:06:47 +0200 Subject: [PATCH] Exclude tests/{assets,templates}/ from wheel A built wheel of this package includes a number of files under `tests/assets/` and `tests/templates/`, which is namespace pollution and doesn't seem to be intentional. Remove them. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 369a34e4..9db14241 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,7 @@ changelog = "https://github.com/jazzband/django-pipeline/blob/master/HISTORY.rst include-package-data = true [tool.setuptools.packages.find] -exclude = ["tests", "tests.tests"] +exclude = ["tests", "tests.*"] [tool.setuptools_scm] local_scheme = "dirty-tag"