From e4b3badb127b751d4946ccd7efb3ec0e8c159895 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 30 Aug 2026 00:19:33 -0400 Subject: [PATCH] build(deps): correct `click` range specification for python3.10+ (#1486) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 29bd2bed0..7ee74409e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ authors = [ dependencies = [ "click ~= 8.1.0; python_version == '3.8'", "click ~= 8.1.0; python_version == '3.9'", - "click ~= 8.1.0, < 8.5.0; python_version >= '3.10'", + "click >= 8.1.0, < 8.5.0; python_version >= '3.10'", "click-option-group ~= 0.5.0", "gitpython ~= 3.0", "requests ~= 2.25",