From da2d4ed5fae9a9e3f099318cfafabe54479c06f1 Mon Sep 17 00:00:00 2001 From: evamaxfield Date: Tue, 25 Feb 2025 16:41:38 -0800 Subject: [PATCH 1/2] Remove strict typer dep --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a3bb91c..2309661 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ readme = "README.md" python = "^3.9" pydantic = "^2.5.3" httpx = "^0.27.0" -typer = "^0.9.0" +typer = ">=0.9.0" pyyaml = "^6.0.1" nest-asyncio = "^1.5.8" aiofiles = "^23.2.1" From 8f64b430fc8ae44b283bd44efc8ccd19ad12f3af Mon Sep 17 00:00:00 2001 From: evamaxfield Date: Wed, 26 Feb 2025 11:15:19 -0800 Subject: [PATCH 2/2] Upper bound typer to next release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2309661..d36c8d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ readme = "README.md" python = "^3.9" pydantic = "^2.5.3" httpx = "^0.27.0" -typer = ">=0.9.0" +typer = ">=0.9, <0.16" pyyaml = "^6.0.1" nest-asyncio = "^1.5.8" aiofiles = "^23.2.1"