From 5336d7d8a7d0bd88f1a2b9add826e187183ccd69 Mon Sep 17 00:00:00 2001 From: staticdev Date: Mon, 11 Dec 2023 21:12:13 +0100 Subject: [PATCH] Fix colors extras --- poetry.lock | 10 +++++----- pyproject.toml | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index dca692c5..18834afe 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1376,13 +1376,13 @@ testing = ["docopt", "pytest (<6.0.0)"] [[package]] name = "pathspec" -version = "0.12.0" +version = "0.12.1" description = "Utility library for gitignore style pattern matching of file paths." optional = false python-versions = ">=3.8" files = [ - {file = "pathspec-0.12.0-py3-none-any.whl", hash = "sha256:f1f8a7eab698c357945c85ed79715e014612b8584faebe209dca4558e2b09513"}, - {file = "pathspec-0.12.0.tar.gz", hash = "sha256:c57e16065a97b7beb175f13c84d27cb05f7b7315741c2fbd5de541042f4ea6e1"}, + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, ] [[package]] @@ -2650,10 +2650,10 @@ docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.link testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [extras] -colors = [] +colors = ["colorama"] plugins = [] [metadata] lock-version = "2.0" python-versions = ">=3.8.0" -content-hash = "5807f11b281c5165541f0791baead6899152b9d709657903de7a5c4f28b5cd0e" +content-hash = "dcdd2152c62b8850f32727259106f0328370694549991626c315e02aaba73770" diff --git a/pyproject.toml b/pyproject.toml index aa2e12cf..9b2e6f23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ include = [ [tool.poetry.dependencies] python = ">=3.8.0" +colorama = {version = ">=0.4.6", optional = true} [tool.poetry.extras] colors = ["colorama"]