Skip to content

Commit 8ff7ce6

Browse files
committed
chore: use uv with editable
1 parent 6d64a17 commit 8ff7ce6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/docs_update-references.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ jobs:
3030
cache-dependency-path: pyproject.toml
3131
- name: Install Dependencies
3232
if: steps.cache.outputs.cache-hit != 'true'
33-
run: pip install ".[dev]"
33+
shell: bash
34+
# should install with `-e`
35+
run: |
36+
set -ux
37+
python -m pip install uv
38+
uv pip install --system -e ".[lint]"
3439
- name: Run build docs
3540
run: bash scripts/build-docs.sh
3641
- name: Commit

0 commit comments

Comments
 (0)