diff --git a/poetry.lock b/poetry.lock index 38bf7187..b046580f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2410,6 +2410,20 @@ files = [ [package.extras] doc = ["reno", "sphinx", "tornado (>=4.5)"] +[[package]] +name = "termcolor" +version = "2.4.0" +description = "ANSI color formatting for output in terminal" +optional = false +python-versions = ">=3.8" +files = [ + {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, + {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, +] + +[package.extras] +tests = ["pytest", "pytest-cov"] + [[package]] name = "tokenizers" version = "0.15.2" @@ -2935,4 +2949,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = ">=3.9,<4.0" -content-hash = "45c00f4a91b9a7da1513e36ae7eaf9a95b22165f4773417049b6c26f839f74a0" +content-hash = "0cc534645da532a15be528138953977fc41d565fb53352a5a8710dcd63b531fe" diff --git a/pyproject.toml b/pyproject.toml index 001fa3ad..5006c730 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,12 +65,13 @@ mypy-protobuf = "^3.0.0" [tool.poetry.group.test.dependencies] pytest = "^8.1.1" +termcolor = "^2.4.0" [tool.ruff] line-length = 127 [tool.ruff.lint] -select = ["E4", "E7", "E9", "F", "W"] +select = ["E4", "E7", "E9", "F", "W", "E501"] ignore = [] fixable = ["ALL"] unfixable = []