We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf38e1 commit 8a8a80eCopy full SHA for 8a8a80e
.github/workflows/docs_update-references.yaml
@@ -30,7 +30,11 @@ jobs:
30
cache-dependency-path: pyproject.toml
31
- name: Install Dependencies
32
if: steps.cache.outputs.cache-hit != 'true'
33
- run: pip install -e ".[dev]"
+ shell: bash
34
+ run: |
35
+ set -ux
36
+ python -m pip install uv
37
+ uv pip install --system ".[dev]"
38
- name: Run build docs
39
run: bash scripts/build-docs.sh
40
- name: Commit
.github/workflows/pr_tests.yaml
@@ -31,7 +31,7 @@ jobs:
run: |
set -ux
python -m pip install uv
- uv pip install --system -e ".[lint]"
+ uv pip install --system ".[lint]"
- name: Run ruff
shell: bash
0 commit comments