From 33ec45f863b8b9d61f03882d2fd00233c037cb94 Mon Sep 17 00:00:00 2001 From: Eitan Mosenkis Date: Wed, 13 Nov 2024 11:14:51 +0200 Subject: [PATCH] Loosen version constraint on dependency 'rich' It works for me with `rich-13.9.2` (and I have another dependency that requires `>=12`, creating a conflict with the current constraint). --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6823c93..55b94ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.9" -rich = "^11.0.0" +rich = ">=11,<14" graphql-core = "^3.2.0" pydantic = ">2" PyYAML = ">=5.3.0"