Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '{{ py.pref(python_versions) }}'
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
if [ -f docs/requirements.txt ]; then pip install -r docs/requirements.txt; fi
pip install .
uv pip install --system -e .
if [ -f docs/requirements.txt ]; then uv pip install -r docs/requirements.txt; fi
if [ -f requirements.txt ]; then uv pip install --system -r requirements.txt; fi
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep both the docs/requirements and requirements. All of the sphinx dependencies are currently in the docs/requirements file.

Copy link
Member Author

@olivialynn olivialynn Dec 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops--copy and paste error, on it!

{%- if include_notebooks %}
- name: Install notebook requirements
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ sphinx:
python:
install:
- requirements: docs/requirements.txt
- requirements: requirements.txt
- method: pip
path: .