Skip to content

Commit 5cf08eb

Browse files
Updated scripts to install dev deps
1 parent 6aa9294 commit 5cf08eb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/init-dev-env.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ try {
6464

6565
$pip = Join-Path $venvDir 'Scripts' 'pip.exe'
6666
Write-Host " Installing Python dependencies"
67-
& $pip install $root --quiet
67+
& $pip install "$root`[dev`]" --quiet
6868
if ($LASTEXITCODE -ne 0) { throw "pip install failed" }
6969

7070
Write-Host "`n=== Dev Environment Setup complete ===" -ForegroundColor Green

scripts/init-dev-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ fi
6666

6767
PIP="$VENV_DIR/bin/pip"
6868
echo " Installing Python dependencies"
69-
"$PIP" install "$ROOT" --quiet
69+
"$PIP" install "$ROOT[dev]" --quiet
7070

7171
echo ""
7272
echo "=== Dev Environment Setup complete ==="

scripts/setup-and-build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ try {
6969

7070
$pip = Join-Path $venvDir 'Scripts' 'pip.exe'
7171
Write-Host " Installing Python dependencies"
72-
& $pip install $root --quiet
72+
& $pip install "$root`[dev`]" --quiet
7373
if ($LASTEXITCODE -ne 0) { throw "pip install failed" }
7474

7575
# ── 4. Compile ─────────────────────────────────────────────────────

scripts/setup-and-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fi
7171

7272
PIP="$VENV_DIR/bin/pip"
7373
echo " Installing Python dependencies"
74-
"$PIP" install "$ROOT" --quiet
74+
"$PIP" install "$ROOT[dev]" --quiet
7575

7676
# ── 4. Compile ─────────────────────────────────────────────────────
7777
echo ""

0 commit comments

Comments
 (0)