From f35cd0dddf3a5b6af356742d743d9880ad3ee302 Mon Sep 17 00:00:00 2001 From: Carlos Lopez Date: Sat, 11 Nov 2023 01:11:44 -0500 Subject: [PATCH] [FIX] update dependencies to lasted colorama After this PR https://github.com/copier-org/copier/pull/1379 method `just_fix_windows_console` is used instead of `init` So is need install `colorama>=0.4.6` because this method is add in commit https://github.com/tartley/colorama/commit/5f1794d1aac9f2f5be4893bcc8ba8a061b9aeb08 otherwise raise error AttributeError: module 'colorama' has no attribute 'just_fix_windows_console' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2b2c6fa30..3ea3ea7f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ copier = "copier.__main__:copier_app_run" [tool.poetry.dependencies] python = ">=3.8,<4.0" # HACK https://github.com/PyCQA/isort/issues/1945 -colorama = ">=0.4.3" +colorama = ">=0.4.6" decorator = ">=5.1.1" dunamai = ">=1.7.0" funcy = ">=1.17"