Skip to content

Commit 7e98de9

Browse files
authored
chore: regenerate uv lock files (#906)
* chore: regenerate uv lock files Regenerate all uv lock files to pick up latest dependency versions. * chore: add --no-config to uv lock commands in generate_locks Prevents uv from inheriting external config (e.g. authenticated index URLs) when generating lock files in temp directories. * fix: use generic type: ignore for ty compatibility in deploy.py ty doesn't support mypy's bracket syntax (type: ignore[arg-type]).
1 parent 0e622d9 commit 7e98de9

18 files changed

Lines changed: 16199 additions & 14577 deletions

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test-e2e:
88
set -a && . tests/cicd/.env && set +a && uv run pytest tests/cicd/test_e2e_deployment.py -v
99

1010
generate-lock:
11-
uv run python -m agent_starter_pack.utils.generate_locks
11+
uv run --no-config python -m agent_starter_pack.utils.generate_locks
1212

1313
lint:
1414
uv sync --dev --extra lint

agent_starter_pack/deployment_targets/agent_engine/python/{{cookiecutter.agent_directory}}/app_utils/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def deploy_agent_engine_app(
329329
labels_dict = parse_key_value_pairs(labels)
330330

331331
# Merge secrets into env_vars (secrets override plain env vars)
332-
env_vars.update(secrets) # type: ignore[arg-type]
332+
env_vars.update(secrets) # type: ignore
333333

334334
# Set deployment-specific environment variables
335335
env_vars["GOOGLE_CLOUD_REGION"] = location

agent_starter_pack/resources/locks/uv-adk-agent_engine.lock

Lines changed: 1052 additions & 933 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk-cloud_run.lock

Lines changed: 1049 additions & 930 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk-gke.lock

Lines changed: 1049 additions & 930 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk_a2a-agent_engine.lock

Lines changed: 1055 additions & 936 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk_a2a-cloud_run.lock

Lines changed: 1052 additions & 933 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk_a2a-gke.lock

Lines changed: 1052 additions & 933 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk_live-agent_engine.lock

Lines changed: 1052 additions & 933 deletions
Large diffs are not rendered by default.

agent_starter_pack/resources/locks/uv-adk_live-cloud_run.lock

Lines changed: 1049 additions & 930 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)