From 0246682a30943a8a77483e4946c98104e49ce6e1 Mon Sep 17 00:00:00 2001 From: Shub <125150494+shubcodes@users.noreply.github.com> Date: Thu, 29 May 2025 10:56:03 -0400 Subject: [PATCH] fix: update typer dependency to ^0.10.0 to fix Python 3.13 compatibility (#413) --- arcade/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/pyproject.toml b/arcade/pyproject.toml index 92aca2fe..16a0935b 100644 --- a/arcade/pyproject.toml +++ b/arcade/pyproject.toml @@ -16,7 +16,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry.dependencies] python = ">=3.10,<4.0" pydantic = "^2.7.0" -typer = "^0.9.0" +typer = ">=0.10.0" rich = "^13.7.1" Jinja2 = ">=3.1.5,<4.0.0" pyyaml = "^6.0"