From 307dfebedaa0b411baa7857a6f4824d2c388e69b Mon Sep 17 00:00:00 2001 From: Taylor Madore Date: Tue, 12 Dec 2023 08:29:34 -0500 Subject: [PATCH] add missing colorama dependency for isort isort[colors] recently removed their dependency on colorama. Add it back until isort releases their fix to restore the dependency. Signed-off-by: Taylor Madore --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index d6b9b0a1a..ff6013a6c 100644 --- a/tox.ini +++ b/tox.ini @@ -44,8 +44,10 @@ commands = [testenv:isort] skip_install = true +# Remove colorama after https://github.com/PyCQA/isort/issues/2211 is released deps = isort[colors] + colorama commands = isort --check --diff --color cachito tests