From 6f2f7293a01a684b2bed22378d0fb7032df43fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Bravo?= <123977407+MartinEBravo@users.noreply.github.com> Date: Tue, 18 Mar 2025 09:53:53 +0100 Subject: [PATCH] refactor: move graphviz dependency to visualization section --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d440424..554771a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,6 @@ dependencies = [ "typing-extensions>=4.12.2, <5", "requests>=2.0, <3", "types-requests>=2.0, <3", - "graphviz>=0.17", ] classifiers = [ "Typing :: Typed", @@ -50,6 +49,10 @@ dev = [ "playwright==1.50.0", "inline-snapshot>=0.20.7", ] +visualization = [ + "graphviz>=0.17", +] + [tool.uv.workspace] members = ["agents"]