Skip to content

Commit

Permalink
chore: Install dependencies with extras (for ANSI support)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Jun 13, 2024
1 parent 9033b49 commit 6b845e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/make
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6b845e8

Please # to comment.