From 682ebf861d65cf5b86f6dd1ed855515001f044f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:13:11 +0000 Subject: [PATCH] chore(deps-dev): Update click requirement Updates the requirements on [click](https://github.com/pallets/click) to permit the latest version. - [Release notes](https://github.com/pallets/click/releases) - [Changelog](https://github.com/pallets/click/blob/main/CHANGES.md) - [Commits](https://github.com/pallets/click/compare/8.1.0...8.4.2) --- updated-dependencies: - dependency-name: click dependency-version: 8.4.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 250115d89..bf0b4ed90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -142,7 +142,7 @@ dev = [ "coverage[toml]>=7.0.0", # Coverage.py with TOML support "packaging>=23.0", # Version parsing for MCP SDK compatibility tests # CLI testing dependencies (duplicated from cli extra for test coverage) - "click>=8.1.0,<8.2.0", # Command-line interface framework (8.2+ removed _textwrap module) + "click>=8.1.0,<8.5.0", # Command-line interface framework (8.2+ removed _textwrap module) "jinja2>=3.1.0", # Template engine for code generation "rich>=13.0.0", # Rich text and beautiful formatting in the terminal "websockets>=12.0", # Required for E2E test imports (also in playground extra) @@ -159,7 +159,7 @@ secrets = [ cli = [ # CLI scaffolding tools - "click>=8.1.0,<8.2.0", # Command-line interface framework (8.2+ removed _textwrap module) + "click>=8.1.0,<8.5.0", # Command-line interface framework (8.2+ removed _textwrap module) "jinja2>=3.1.0", # Template engine for code generation "rich>=13.0.0", # Rich text and beautiful formatting in the terminal ]