From 893c55459e0d1fcdda5be0640b7a81def8abf693 Mon Sep 17 00:00:00 2001 From: Cheng Date: Wed, 30 Jul 2025 15:20:40 +0900 Subject: [PATCH] There is no uvx --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d75122083..bf638afce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,7 +72,9 @@ jobs: - run: name: Run style checks command: | - uvx pre-commit run --all + uv venv + uv pip install pre-commit + uv run --no-project pre-commit run --all if ! git diff --quiet; then echo 'Style checks failed, please install pre-commit and run pre-commit run --all and push the change'; exit 1; fi - run: name: Install dependencies @@ -85,7 +87,6 @@ jobs: - run: name: Install Python package command: | - uv venv uv pip install cmake uv pip install -e ".[dev]" - run: