Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ebd06f8

Browse files
committed
Use uv instead of pip for CI download
1 parent 60ada7c commit ebd06f8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ commands:
3939
- run:
4040
name: Install dependencies
4141
command: |
42-
python -m venv venv
43-
. venv/bin/activate
44-
pip install -e .
42+
curl -LsSf https://astral.sh/uv/install.sh | sh
43+
uv venv
44+
source .venv/bin/activate
45+
uv pip install .
4546
pip install -r ./test_requirements/requirements_<<parameters.py>>_optional.txt
4647
cd js
4748
npm ci

0 commit comments

Comments
 (0)