Skip to content

Commit 2764a82

Browse files
authored
fix: lock files & update uv default version (#375)
fix: lock files & update uv default version (#375)
1 parent 556cafa commit 2764a82

32 files changed

+586
-11401
lines changed

.cloudbuild/terraform/build_triggers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ locals {
103103
value = "adk_base,cloud_run,--session-type,alloydb"
104104
},
105105
{
106-
name = "adk_base-cloud_run-agent_engine"
106+
name = "adk_b-cr-agent_engine"
107107
value = "adk_base,cloud_run,--session-type,agent_engine"
108108
},
109109
]

docs/guide/deploy-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN apt-get update && apt-get install -y \
5656
&& apt-get clean \
5757
&& rm -rf /var/lib/apt/lists/*
5858

59-
RUN pip install --no-cache-dir uv==0.6.12
59+
RUN pip install --no-cache-dir uv==0.8.13
6060

6161
WORKDIR /code
6262

src/base_template/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Install dependencies using uv package manager
66
install:
7-
@command -v uv >/dev/null 2>&1 || { echo "uv is not installed. Installing uv..."; curl -LsSf https://astral.sh/uv/0.6.12/install.sh | sh; source $HOME/.local/bin/env; }
7+
@command -v uv >/dev/null 2>&1 || { echo "uv is not installed. Installing uv..."; curl -LsSf https://astral.sh/uv/0.8.13/install.sh | sh; source $HOME/.local/bin/env; }
88
{%- if cookiecutter.settings.get("commands", {}).get("override", {}).get("install") %}
99
{{cookiecutter.settings.get("commands", {}).get("override", {}).get("install")}}
1010
{%- else %}

src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/deploy-to-prod.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ jobs:
6767
{%- if cookiecutter.deployment_target == 'agent_engine' %}
6868
- name: Install uv and dependencies
6969
run: |
70-
pip install uv==0.6.12
70+
pip install uv==0.8.13
7171
uv sync --locked
7272
{%- endif %}
7373

7474
{%- if cookiecutter.data_ingestion %}
7575
- name: Deploy data ingestion pipeline (Production)
7676
run: |
77-
cd data_ingestion && pip install uv==0.6.12 && cd data_ingestion_pipeline && \
77+
cd data_ingestion && pip install uv==0.8.13 && cd data_ingestion_pipeline && \
7878
uv sync --locked && uv run python submit_pipeline.py
7979
env:
8080
PIPELINE_ROOT: {% raw %}${{ vars.PIPELINE_GCS_ROOT_PROD }}{% endraw %}

src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/pr_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Install uv and dependencies
5757
run: |
58-
pip install uv==0.6.12
58+
pip install uv==0.8.13
5959
uv sync --locked
6060
6161
- name: Run unit tests

src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/staging.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Deploy data ingestion pipeline (Staging)
6060
run: |
61-
cd data_ingestion && pip install uv==0.6.12 && cd data_ingestion_pipeline && \
61+
cd data_ingestion && pip install uv==0.8.13 && cd data_ingestion_pipeline && \
6262
uv sync --locked && uv run python submit_pipeline.py
6363
env:
6464
PIPELINE_ROOT: {% raw %}${{ vars.PIPELINE_GCS_ROOT_STAGING }}{% endraw %}
@@ -113,7 +113,7 @@ jobs:
113113

114114
- name: Install uv and dependencies
115115
run: |
116-
pip install uv==0.6.12
116+
pip install uv==0.8.13
117117
uv sync --locked
118118
119119
- name: Deploy to Staging (Agent Engine)

src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/deploy-to-prod.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ steps:
2020
args:
2121
- -c
2222
- |
23-
cd data_ingestion && pip install uv==0.6.12 --user && cd data_ingestion_pipeline && \
23+
cd data_ingestion && pip install uv==0.8.13 --user && cd data_ingestion_pipeline && \
2424
uv sync --locked && uv run python submit_pipeline.py
2525
env:
2626
- "PIPELINE_ROOT=${_PIPELINE_GCS_ROOT_PROD}"
@@ -63,7 +63,7 @@ steps:
6363
args:
6464
- "-c"
6565
- |
66-
pip install uv==0.6.12 --user && uv sync --locked
66+
pip install uv==0.8.13 --user && uv sync --locked
6767
env:
6868
- 'PATH=/usr/local/bin:/usr/bin:~/.local/bin'
6969

src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/pr_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ steps:
2020
args:
2121
- "-c"
2222
- |
23-
pip install uv==0.6.12 --user && uv sync --locked
23+
pip install uv==0.8.13 --user && uv sync --locked
2424
env:
2525
- 'PATH=/usr/local/bin:/usr/bin:~/.local/bin'
2626

src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/staging.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ steps:
2020
args:
2121
- -c
2222
- |
23-
cd data_ingestion && pip install uv==0.6.12 --user && cd data_ingestion_pipeline && \
23+
cd data_ingestion && pip install uv==0.8.13 --user && cd data_ingestion_pipeline && \
2424
uv sync --locked && uv run python submit_pipeline.py
2525
env:
2626
- "PIPELINE_ROOT=${_PIPELINE_GCS_ROOT_STAGING}"
@@ -97,7 +97,7 @@ steps:
9797
args:
9898
- "-c"
9999
- |
100-
pip install uv==0.6.12 --user && uv sync --locked
100+
pip install uv==0.8.13 --user && uv sync --locked
101101
env:
102102
- 'PATH=/usr/local/bin:/usr/bin:~/.local/bin'
103103

src/deployment_targets/cloud_run/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
FROM python:3.11-slim
1616

17-
RUN pip install --no-cache-dir uv==0.6.12
17+
RUN pip install --no-cache-dir uv==0.8.13
1818

1919
{%- if cookiecutter.is_adk_live %}
2020
# Install Node.js for frontend build

0 commit comments

Comments
 (0)