From 2146c75f4eccbcfbb5fe649a4a2cccdaec6ed8ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 1 Feb 2022 13:28:12 +0100 Subject: [PATCH] Allow rich-11 (#2057) Relax the version bind on rich to allow v11. There are no test regressions with the new version, and CLI seems to work correctly. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 304d3289b7..945bfb83e0 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def get_packages(package): ], "cli": [ "click==8.*", - "rich==10.*", + "rich>=10,<12", "pygments==2.*" ] },