From 6b845e8339f966f6b3498071eb0ef42e116be011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Thu, 13 Jun 2024 18:07:39 +0200 Subject: [PATCH] chore: Install dependencies with extras (for ANSI support) --- scripts/make | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/make b/scripts/make index b68ad25..1a74268 100755 --- a/scripts/make +++ b/scripts/make @@ -37,12 +37,12 @@ def uv_install() -> None: uv_opts = "" if "UV_RESOLUTION" in os.environ: uv_opts = f"--resolution={os.getenv('UV_RESOLUTION')}" - cmd = f"uv pip compile {uv_opts} pyproject.toml devdeps.txt | uv pip install -r -" + cmd = f"uv pip compile {uv_opts} --all-extras pyproject.toml devdeps.txt | uv pip install -r -" shell(cmd) if "CI" not in os.environ: - shell("uv pip install --no-deps -e .[ansi]") + shell("uv pip install --no-deps -e .") else: - shell("uv pip install --no-deps .[ansi]") + shell("uv pip install --no-deps .") def setup() -> None: