From 69a0ec625ab08b16c29647fddc68d4188475121b Mon Sep 17 00:00:00 2001 From: codejedi365 Date: Thu, 15 May 2025 22:30:37 -0600 Subject: [PATCH] build(deps): prevent update to `click@8.2.0` click 8.2 has a breaking change in the test suite where it removes a parameter from the cli runner. There is additional deprecation warnings included as well so for now since it will break our tests limit this to 8.1.0 only. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 074ab8c4b..ca6945374 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ readme = "README.rst" authors = [{ name = "Rolf Erik Lekang", email = "me@rolflekang.com" }] dependencies = [ - "click ~= 8.0", + "click ~= 8.1.0", "click-option-group ~= 0.5", "gitpython ~= 3.0", "requests ~= 2.25",