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
1 change: 1 addition & 0 deletions .github/workflows/build-push-notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade jupyter
python3 -m pip install --upgrade -r requirements.txt
python3 docs/install_pyopenms.py


- name: Generating notebooks
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-pr-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax

- name: Installing Dependencies
run: pip install -r docs/requirements.txt
run: |
pip install -r docs/requirements.txt
python3 docs/install_pyopenms.py

- name: Install PyOpenMS if URL is provided
if: ${{ inputs.pyopenms_wheel_url != '' }}
Expand Down