From 93c60e1294e083751ace8c53d95d079766b505a2 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Sun, 20 Sep 2026 17:21:36 +0300 Subject: [PATCH] fix(deps): raise the typer floor The declared >=0.9 resolves to a release whose argument parsing the integration does not match. Bisected against the suite: 0.26.0 is the first release it works with. Closes #53 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ef16c91..60187e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ "Typing :: Typed", "Topic :: Software Development :: Libraries", ] -dependencies = ["typer>=0.9,<1", "modern-di>=3,<4"] +dependencies = ["typer>=0.26,<1", "modern-di>=3,<4"] version = "0" [project.urls]