From c9d4a1ee33c7a8e1c9b7baf614e65ca053a43070 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:09:51 +0000 Subject: [PATCH 1/2] chore(deps): Bump crewai-tools in /a2a/git_issue_agent Bumps [crewai-tools](https://github.com/crewAIInc/crewAI) from 0.76.0 to 1.10.1. - [Release notes](https://github.com/crewAIInc/crewAI/releases) - [Commits](https://github.com/crewAIInc/crewAI/compare/0.76.0...1.10.1) --- updated-dependencies: - dependency-name: crewai-tools dependency-version: 1.10.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- a2a/git_issue_agent/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a2a/git_issue_agent/pyproject.toml b/a2a/git_issue_agent/pyproject.toml index 73459f1f..a7194b38 100644 --- a/a2a/git_issue_agent/pyproject.toml +++ b/a2a/git_issue_agent/pyproject.toml @@ -7,7 +7,7 @@ dependencies = [ "python-dotenv>=1.1.0", "a2a-sdk>=0.2.16", "crewai==0.203.1", - "crewai-tools==0.76.0", + "crewai-tools==1.10.1", "crewai-tools[mcp]==0.76.0", ] From eb9b68abcded0304ac1144bd0c6b6bb94fd5f992 Mon Sep 17 00:00:00 2001 From: Paolo Dettori Date: Thu, 12 Mar 2026 17:15:31 -0400 Subject: [PATCH 2/2] fix(deps): fix crewai-tools version conflict and crewai compatibility Fix two install-time failures introduced by Dependabot bump: 1. Remove duplicate crewai-tools pin, consolidate to crewai-tools[mcp]==1.10.1 2. Update crewai==0.203.1 -> crewai==1.10.1 (required by crewai-tools==1.10.1) Signed-off-by: Paolo Dettori --- a2a/git_issue_agent/pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/a2a/git_issue_agent/pyproject.toml b/a2a/git_issue_agent/pyproject.toml index a7194b38..d82dbad8 100644 --- a/a2a/git_issue_agent/pyproject.toml +++ b/a2a/git_issue_agent/pyproject.toml @@ -6,9 +6,8 @@ description = "Git issue Agent module" dependencies = [ "python-dotenv>=1.1.0", "a2a-sdk>=0.2.16", - "crewai==0.203.1", - "crewai-tools==1.10.1", - "crewai-tools[mcp]==0.76.0", + "crewai==1.10.1", + "crewai-tools[mcp]==1.10.1", ] [tool.ruff]