Skip to content

Commit b8375f3

Browse files
committed
Replace pip with uv in plotly.js dev build CI
1 parent 74724a5 commit b8375f3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,9 @@ jobs:
273273
- run:
274274
name: initial NPM Build
275275
command: |
276-
python -m venv venv
277-
. venv/bin/activate
276+
curl -LsSf https://astral.sh/uv/install.sh | sh
277+
uv venv
278+
source .venv/bin/activate
278279
uv pip install jupyter
279280
cd plotly/labextension
280281
npm ci
@@ -284,8 +285,8 @@ jobs:
284285
- run:
285286
name: PyPI Build
286287
command: |
287-
. venv/bin/activate
288-
pip install build
288+
source .venv/bin/activate
289+
uv pip install build
289290
python -m build --sdist --wheel -o dist
290291
cp -R dist output
291292
git status

0 commit comments

Comments
 (0)