Skip to content

Commit 64a70e7

Browse files
committed
Use --seed with uv
1 parent 1176cd7 commit 64a70e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actions/create-virtualenv/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
run: |
2222
if command -v uv; then
2323
echo "Creating venv named '${VENV_NAME}' with uv"
24-
uv venv "${VENV_NAME}"
24+
uv venv --seed "${VENV_NAME}"
2525
else
2626
echo "Creating venv named '${VENV_NAME}' with virtualenv"
2727
python -m pip install virtualenv

0 commit comments

Comments
 (0)