From 6a5ee1ae7aa4a55980faeed79c58f1fe9f2a6fb2 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Mon, 23 Mar 2026 16:04:13 +0500 Subject: [PATCH] Fix CI: pin typer<0.21.0 for Python 3.9 compat (click 8.2+ needs 3.10+) Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 96c15e9..5f9f830 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,8 +22,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Artificial Intelligence", ] dependencies = [ - "typer>=0.9.0", - "click>=8.2.0", + "typer>=0.9.0,<0.21.0", "rich>=13.0.0", "pydantic>=2.0.0", "pyyaml>=6.0",