Skip to content

Commit 7e41598

Browse files
authored
Update documentation build workflow for dependencies
1 parent 699de35 commit 7e41598

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python-project-template/.github/workflows/{% if include_docs %}build-documentation.yml{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
run: |
3030
sudo apt-get update
3131
python -m pip install --upgrade pip
32-
if [ -f docs/requirements.txt ]; then pip install -r docs/requirements.txt; fi
33-
pip install .
32+
uv pip install --system -e .[dev]
33+
if [ -f requirements.txt ]; then uv pip install --system -r requirements.txt; fi
3434
{%- if include_notebooks %}
3535
- name: Install notebook requirements
3636
run: |

0 commit comments

Comments
 (0)