From dfd531d4afa2f0d532faf250e6138191def973ee Mon Sep 17 00:00:00 2001 From: Marnik Bercx Date: Thu, 2 Oct 2025 09:43:48 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20`typer`:=20remove=20`all`=20extr?= =?UTF-8?q?a=20and=20bump=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since v0.12.1, `typer` no longer requires the `all` extra, since it installs `rich` and `shellingham` by default: https://typer.tiangolo.com/release-notes/#0121 We also bump the version to the latest one. There should be no breaking changes that affect us. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2b8f606..37a7aae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "pydantic~=2.7", "pydantic-settings~=2.2", "python-dotenv~=1.0", - "typer[all]~=0.9", + "typer~=0.19.2", "pyyaml~=6.0", 'eval-type-backport; python_version<"3.10"', "uv~=0.8.20",