From c653de8e5f0ea6f61ec185c1fcc1429b58610d2b Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 22:27:23 +0000 Subject: [PATCH] fix: Update tach.toml to use dependency-group format - Replace incorrect [external] and [tool.tach.dependencies] with [dependency-group.ci] - Keep existing module configurations intact - Fix 'Group ci is not defined' error Part of #461 Co-Authored-By: Alex Reibman --- tach.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tach.toml b/tach.toml index cae6e9a0..646b382b 100644 --- a/tach.toml +++ b/tach.toml @@ -25,7 +25,7 @@ depends_on = [] path = "agentops.log_config" depends_on = [] -[tool.tach.dependencies] -ci = [ - "tach~=0.9", +[dependency-group.ci] +dependencies = [ + "tach~=0.9" ]