From a84b9edcb6afe4e90f1aa60bfd9f915cd2880975 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Sun, 20 Sep 2026 16:54:08 +0300 Subject: [PATCH] fix(deps): give the five unbounded dependencies a lower bound typer, rich, semver, pydantic-settings and httpx2 were declared as bare names, so the range admitted every release ever published and semver resolved to 0.0.1, which does not build. Each floor bisected against the suite rather than guessed. Closes #78 --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0c5401d..3d4c6ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,12 +19,12 @@ classifiers = [ ] version = "0" dependencies = [ - "typer", - "rich", - "semver", - "pydantic-settings", + "typer>=0.13", + "rich>=10.2", + "semver>=3", + "pydantic-settings>=2", "modern-di-typer>=3,<4", - "httpx2", + "httpx2>=2", "httpware[pydantic]>=0.15.0", ]