Skip to content

Commit 7ef9a19

Browse files
committed
⚡️ uv-tool-utils
1 parent bf2f92b commit 7ef9a19

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

bin/uv-tool-utils

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function uv_install() {
1919
else
2020
local CLEAN_PACKAGE="${PACKAGE}"
2121
fi
22-
23-
uv tool upgrade "${CLEAN_PACKAGE}" "${EXTRA_ARGS[@]}" || uv tool install "${PACKAGE}" "${EXTRA_ARGS[@]}"
22+
echo "📦 Installing ${CLEAN_PACKAGE}"
23+
uv tool install --upgrade "${PACKAGE}" "${EXTRA_ARGS[@]}"
2424
}
2525

2626
function uv_tool_install_file() {
@@ -34,7 +34,6 @@ function uv_tool_install_file() {
3434
while IFS= read -r line; do
3535
if [[ ${line} =~ ^[^#]*$ ]] && [[ -n ${line} ]]; then
3636
local PACKAGE="${line%%#*}"
37-
echo "📦 Installing ${PACKAGE}"
3837
uv_install ${PACKAGE}
3938
fi
4039
done <"${FILE}"

tools/uv/UvToolFile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ cookiecutter
66
dunk
77
dvc
88
elia-chat
9-
hatch
9+
hatch --with pip
1010
hatch-pip-compile
1111
httpie
12-
jupyterlab
12+
jupyterlab --with pandas --with numpy --with s3fs[boto3] --with pyarrow --with scikit-learn
1313
ipython
1414
llm
1515
llm-term[all]

0 commit comments

Comments
 (0)