Skip to content

Commit

Permalink
build(deps): fix minimum colorama version (#1403)
Browse files Browse the repository at this point in the history
After this PR #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 tartley/colorama@5f1794d
otherwise raise error
AttributeError: module 'colorama' has no attribute 'just_fix_windows_console'
  • Loading branch information
celm1990 authored Nov 11, 2023
1 parent 43aa5ed commit a0770ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a0770ef

Please sign in to comment.