From 04296cd0925569075d1fc1a20e3ca5cc895f7ec0 Mon Sep 17 00:00:00 2001 From: Pitchfork-and-Torch Date: Fri, 18 Sep 2026 02:45:58 +0000 Subject: [PATCH] Require click for the always-installed deep CLI The deep console script imports click unconditionally, but click lived only in the optional cli extra, so bare installs (e.g. uv tool install deepdiff) raised ModuleNotFoundError (#594). --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 980cb6f9..5d137749 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ version = "9.1.0" dependencies = [ "cachebox>=5.2,<6", "orderly-set>=5.5.0,<6", + "click>=8.0", ] requires-python = ">=3.10" authors = [ @@ -40,7 +41,6 @@ coverage = [ "coverage~=7.13.5", ] cli = [ - "click~=8.3.1", "pyyaml~=6.0.3" ] dev = [