Skip to content

Commit 5718e12

Browse files
Copilotstephentoub
andauthored
[Python] Remove --locked flag from uv sync in copilot-setup-steps.yml (#628)
* Initial plan * Fix: remove --locked flag from uv sync in copilot-setup-steps.yml The --locked flag requires a uv.lock file which doesn't exist in the python/ directory, causing the "Install Python dependencies" setup step to fail for CCA invocations. This aligns with the python-sdk-tests.yml workflow which uses uv sync without --locked. Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com>
1 parent 6415c40 commit 5718e12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
# Install Python dependencies
7878
- name: Install Python dependencies
7979
working-directory: ./python
80-
run: uv sync --locked --all-extras --dev
80+
run: uv sync --all-extras --dev
8181

8282
# Install Go dependencies
8383
- name: Install Go dependencies

0 commit comments

Comments
 (0)