Skip to content

Commit 5ba3212

Browse files
dugshubclaude
andcommitted
fix: Use pip freeze instead of uv in Docker sync check
The Docker container uses standard pip, not uv, so the sync check workflow needs to use pip freeze for the Docker environment. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 15884f3 commit 5ba3212

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sync-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Get Docker environment
2727
run: |
2828
docker compose -f docker-compose.ci.yml run ci \
29-
sh -c "uv pip freeze | sort" > /tmp/docker-deps.txt
29+
sh -c "pip freeze | sort" > /tmp/docker-deps.txt
3030
docker compose -f docker-compose.ci.yml run ci \
3131
python --version > /tmp/docker-version.txt
3232

0 commit comments

Comments
 (0)