From 124f86732f3ab32657903ae4843f243cdc66a420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ahlert?= Date: Fri, 29 May 2026 10:00:14 -0300 Subject: [PATCH] fix(packaging): repair developer extra reference and dedupe tests extra MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'developer' optional-dependency referenced apache-burr[bloat], but the 'bloat' extra was renamed to 'examples' in cd801c88 and the reference was never updated, so 'pip install apache-burr[developer]' failed to resolve. Also drop a duplicate apache-burr[hamilton] entry in the 'tests' extra. Signed-off-by: André Ahlert --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 98575063b..3260eca3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,7 +85,6 @@ tests = [ "pytest", "pytest-asyncio", "apache-burr[hamilton]", - "apache-burr[hamilton]", "langchain_core", "langchain_community", "pandas", @@ -208,7 +207,7 @@ developer = [ "apache-burr[tracking]", "apache-burr[tests]", "apache-burr[documentation]", - "apache-burr[bloat]", + "apache-burr[examples]", "build", "twine", "pre-commit",