Skip to content

Commit 0be4bf4

Browse files
authored
Switch paramiko.sh to be fully uv-based (#13240)
* Switch paramiko.sh to be fully uv-based This is ~= what I do in local dev after the 4.0 update. I have some local idiosyncracies re: where UV sticks its venv, and whether the venv has pip in it (I create the venvs via `uv venv --seed`), _but_ I don't believe either of those matter for this environment/use case. * Add inexact, active flags to uv sync inexact = don't blow away stuff already in the venv (being managed outside this script), active = also, kinda use that venv plz, there's some confusion re: whether it's actually hitting the same path as exterior env.
1 parent aeccd1f commit 0be4bf4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/downstream.d/paramiko.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ case "${1}" in
55
git clone --depth=1 https://github.com/paramiko/paramiko
66
cd paramiko
77
git rev-parse HEAD
8-
uv pip install pip
9-
uv pip install -e . --group dev
10-
pip install . --group dev
8+
uv --version
9+
uv sync --inexact --active
1110
;;
1211
run)
1312
cd paramiko

0 commit comments

Comments
 (0)