From 15700e0a322abd2d9db5fff694e83df9b0bdfd7a Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Thu, 8 Jan 2026 11:22:59 -0700 Subject: [PATCH] Only exclude .so files for sdist packaging --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ea512c5656..0a3dd0cf5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -438,7 +438,9 @@ include = [ { path = "rust/build.rs", format = "sdist" }, { path = "rust/src/**", format = "sdist" }, ] -exclude = ["synapse/*.so"] +exclude = [ + { path = "synapse/*.so", format = "sdist" }, +] [build-system] # The upper bounds here are defensive, intended to prevent situations like