From 53016519818a99bb85a592ad4afb457377ae5734 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 17:56:23 +0000 Subject: [PATCH 1/2] chore(deps): bump click from 8.0.4 to 8.4.2 Bumps [click](https://github.com/pallets/click) from 8.0.4 to 8.4.2. - [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.0.4...8.4.2) --- updated-dependencies: - dependency-name: click dependency-version: 8.4.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index c6114e2aa..e2e0c735d 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -26,7 +26,7 @@ pytest-cov>=7.1.0,<8; python_version >= "3.9" # click # Note: black is affected by https://github.com/pallets/click/issues/2225; pin click to 8.0.4. -click==8.0.4 +click==8.4.2 # psutil psutil>=7.2.2,<8 From ba4ca0605a064119b7d50d24dc1598e6fb7f73bb Mon Sep 17 00:00:00 2001 From: William Bergamin Date: Mon, 3 Aug 2026 14:53:21 -0400 Subject: [PATCH 2/2] chore(deps): cap click at <8.2 for Python <3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit click 8.2.0 raised its minimum to Python >=3.10, so click==8.4.2 is uninstallable on the 3.7/3.8/3.9 CI jobs (last compatible release is 8.1.8). Split the pin with python_version markers: cap older interpreters at 8.1.8 and take the bump on 3.10+. Also drop the stale black/click#2225 note — that regression was fixed long ago and black (in tools.txt, latest-Python only) runs click 8.4.2 fine, as the passing Lint job shows. Co-Authored-By: Claude --- requirements/testing.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index e2e0c735d..ffc18db7e 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -25,8 +25,9 @@ pytest-cov>=4,<7.1.0; python_version < "3.9" pytest-cov>=7.1.0,<8; python_version >= "3.9" # click -# Note: black is affected by https://github.com/pallets/click/issues/2225; pin click to 8.0.4. -click==8.4.2 +# Note: click 8.2+ requires Python >=3.10; cap older interpreters below it. +click==8.1.8; python_version < "3.10" +click==8.4.2; python_version >= "3.10" # psutil psutil>=7.2.2,<8