Skip to content

Commit 5e7554f

Browse files
committed
fix UV warning
1 parent 5d1e235 commit 5e7554f

File tree

17 files changed

+34
-34
lines changed

17 files changed

+34
-34
lines changed

services/agent/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2424
command -v python | sed 's/^/ /'
2525

2626
cd services/agent
27-
uv pip --quiet sync requirements/dev.txt
27+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2828
cd -
2929
echo "$INFO" "PIP :"
3030
uv pip list
@@ -33,7 +33,7 @@ fi
3333
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3434
# NOTE: production does NOT pre-installs debugpy
3535
if command -v uv >/dev/null 2>&1; then
36-
uv pip install debugpy
36+
uv pip install --link-mode=copy debugpy
3737
else
3838
pip install debugpy
3939
fi

services/api-server/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
1919
command -v python | sed 's/^/ /'
2020

2121
cd services/api-server
22-
uv pip --quiet sync requirements/dev.txt
22+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2323
cd -
2424
echo "$INFO" "PIP :"
2525
uv pip list
@@ -28,7 +28,7 @@ fi
2828
if [ "${SC_BOOT_MODE}" = "debug" ]; then
2929
# NOTE: production does NOT pre-installs debugpy
3030
if command -v uv >/dev/null 2>&1; then
31-
uv pip install debugpy
31+
uv pip install --link-mode=copy debugpy
3232
else
3333
pip install debugpy
3434
fi

services/autoscaling/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2424
command -v python | sed 's/^/ /'
2525

2626
cd services/autoscaling
27-
uv pip --quiet sync requirements/dev.txt
27+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2828
cd -
2929
uv pip list
3030
fi
3131

3232
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3333
# NOTE: production does NOT pre-installs debugpy
3434
if command -v uv >/dev/null 2>&1; then
35-
uv pip install debugpy
35+
uv pip install --link-mode=copy debugpy
3636
else
3737
pip install debugpy
3838
fi

services/catalog/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
1919
command -v python | sed 's/^/ /'
2020

2121
cd services/catalog
22-
uv pip --quiet sync requirements/dev.txt
22+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2323
cd -
2424
echo "$INFO" "PIP :"
2525
uv pip list
@@ -28,7 +28,7 @@ fi
2828
if [ "${SC_BOOT_MODE}" = "debug" ]; then
2929
# NOTE: production does NOT pre-installs debugpy
3030
if command -v uv >/dev/null 2>&1; then
31-
uv pip install debugpy
31+
uv pip install --link-mode=copy debugpy
3232
else
3333
pip install debugpy
3434
fi

services/clusters-keeper/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2424
command -v python | sed 's/^/ /'
2525

2626
cd services/clusters-keeper
27-
uv pip --quiet sync requirements/dev.txt
27+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2828
cd -
2929
echo "$INFO" "PIP :"
3030
uv pip list
@@ -33,7 +33,7 @@ fi
3333
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3434
# NOTE: production does NOT pre-installs debugpy
3535
if command -v uv >/dev/null 2>&1; then
36-
uv pip install debugpy
36+
uv pip install --link-mode=copy debugpy
3737
else
3838
pip install debugpy
3939
fi

services/dask-sidecar/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2525
python --version | sed 's/^/ /'
2626
command -v python | sed 's/^/ /'
2727
cd services/dask-sidecar
28-
uv pip --quiet sync requirements/dev.txt
28+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2929
cd -
3030
print_info "PIP :"
3131
uv pip list
@@ -34,7 +34,7 @@ fi
3434
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3535
# NOTE: production does NOT pre-installs debugpy
3636
if command -v uv >/dev/null 2>&1; then
37-
uv pip install debugpy
37+
uv pip install --link-mode=copy debugpy
3838
else
3939
pip install debugpy
4040
fi

services/datcore-adapter/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2424
command -v python | sed 's/^/ /'
2525

2626
cd services/datcore-adapter
27-
uv pip --quiet sync requirements/dev.txt
27+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2828
cd -
2929
echo "$INFO" "PIP :"
3030
uv pip list
@@ -33,7 +33,7 @@ fi
3333
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3434
# NOTE: production does NOT pre-installs debugpy
3535
if command -v uv >/dev/null 2>&1; then
36-
uv pip install debugpy
36+
uv pip install --link-mode=copy debugpy
3737
else
3838
pip install debugpy
3939
fi

services/director-v2/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2424
command -v python | sed 's/^/ /'
2525

2626
cd services/director-v2
27-
uv pip --quiet sync requirements/dev.txt
27+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2828
cd -
2929
echo "$INFO" "PIP :"
3030
uv pip list
@@ -33,7 +33,7 @@ fi
3333
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3434
# NOTE: production does NOT pre-installs debugpy
3535
if command -v uv >/dev/null 2>&1; then
36-
uv pip install debugpy
36+
uv pip install --link-mode=copy debugpy
3737
else
3838
pip install debugpy
3939
fi

services/dynamic-scheduler/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2424
command -v python | sed 's/^/ /'
2525

2626
cd services/dynamic-scheduler
27-
uv pip --quiet sync requirements/dev.txt
27+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2828
cd -
2929
echo "$INFO" "PIP :"
3030
uv pip list
@@ -33,7 +33,7 @@ fi
3333
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3434
# NOTE: production does NOT pre-installs debugpy
3535
if command -v uv >/dev/null 2>&1; then
36-
uv pip install debugpy
36+
uv pip install --link-mode=copy debugpy
3737
else
3838
pip install debugpy
3939
fi

services/dynamic-sidecar/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2525

2626
# NOTE: uv does not like this requirement file...
2727
cd /devel/services/dynamic-sidecar
28-
uv pip --quiet sync requirements/dev.txt
28+
uv pip --quiet sync --link-mode=copy requirements/dev.txt
2929
cd -
3030
echo "$INFO" "PIP :"
3131
pip list | sed 's/^/ /'
@@ -34,7 +34,7 @@ fi
3434
if [ "${SC_BOOT_MODE}" = "debug" ]; then
3535
# NOTE: production does NOT pre-installs debugpy
3636
if command -v uv >/dev/null 2>&1; then
37-
uv pip install debugpy
37+
uv pip install --link-mode=copy debugpy
3838
else
3939
pip install debugpy
4040
fi

0 commit comments

Comments
 (0)