From fd07ddc584c9e493128b979ee0bdbff3474adadf Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 11:52:27 +0200 Subject: [PATCH] Add uv no-build (binary-only) with daff source-build allow-list Rebased on latest main. Use no-binary-package = ["daff"] (daff is sdist-only, no wheels) so it builds from source while everything else stays wheels-only. Keeps exclude-newer cooldown and package = false. Towards PLA-2146 Co-authored-by: Cursor --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 63d593695b2..4daae3469dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,3 +13,6 @@ dependencies = [ [tool.uv] exclude-newer = "3 days" package = false +no-build = true +# binary-only, except allow daff (sdist-only, no wheels) to build from source +no-binary-package = ["daff"]