From d4d46eac37cac17fa09b1d64a8a631db70804aa0 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Sat, 5 Oct 2024 19:22:23 -0700 Subject: [PATCH] Don't exclude src/test and website from sdist (#1857) The source should appear in the sdist, since the build's cmake requires them. Signed-off-by: Cary Phillips --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 45fcbc0cf..b9d722dc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ testpaths = ["tests"] [tool.scikit-build] wheel.expand-macos-universal-tags = true -sdist.exclude = [".github", "src/test", "src/examples", "website", "ASWF", "bazel", "share"] +sdist.exclude = [".github", "src/examples", "ASWF", "bazel", "share"] # Only build the PyOpenEXR (cmake --build --target PyOpenEXR). cmake.targets = ["PyOpenEXR"]