Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sitic committed Oct 11, 2024
1 parent 7e80953 commit 7162d26
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ jobs:
uses: actions/checkout@v4

- name: Install optimap
run: python -m pip install .[docs]
run: python -m pip install -e .[docs]

- name: Jupyter notebook setup
run: |
python -m pip install jupyter_contrib_nbextensions
jupyter nbextension install --py widgetsnbextension --user
jupyter nbextension enable widgetsnbextension --user --py
- name: Cache file downloads and jupyter notebook execution
uses: actions/cache@v4
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ def remove_markdown(cell):
"matplotlib": ("https://matplotlib.org/stable", None),
"numpy": ("https://numpy.org/doc/stable", None),
"python": ("https://docs.python.org/3", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
"skimage": ("https://scikit-image.org/docs/stable/", None),
"monochrome": ("https://monochrome.readthedocs.io/stable/", None),
"scipy": ("https://docs.scipy.org/doc/scipy", None),
"skimage": ("https://scikit-image.org/docs/stable", None),
"monochrome": ("https://monochrome.readthedocs.io/stable", None),
}

# Add any paths that contain templates here, relative to this directory.
Expand Down

0 comments on commit 7162d26

Please sign in to comment.