Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
path: docs/source/demo_notebooks
ref: main

- name: Set up Python 3.10
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"

- name: Install package
run: |
Expand Down
1 change: 0 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ sphinx-gallery==0.19.0
sphinx-tabs==3.4.7
sphinx-togglebutton==0.3.2
sphinx_design==0.6.0
sphinx_pydata_theme==0.1.0
sphinxcontrib-applehelp==2.0.0
sphinxcontrib-devhelp==2.0.0
sphinxcontrib-htmlhelp==2.1.0
Expand Down
7 changes: 4 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ def get_years(start_year=2021):
napoleon_attr_annotations = True

intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"torch": ("https://pytorch.org/docs/stable/", None),
"python": ("https://docs.python.org/3.12/", None),
"torch": ("https://docs.pytorch.org/docs/stable", None),
"sklearn": ("https://scikit-learn.org/stable", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"matplotlib": ("https://matplotlib.org/stable/", None),
"pandas": ("https://pandas.pydata.org/docs/", None),
"scipy": ("http://docs.scipy.org/doc/scipy/reference/", None),
"scipy": ("https://docs.scipy.org/doc/scipy", None),
"joblib": ("https://joblib.readthedocs.io/en/latest/", None),
"plotly": ("https://plotly.com/python-api-reference/", None)
}
Expand Down Expand Up @@ -236,6 +236,7 @@ def get_years(start_year=2021):
# Right now, only python module types are problematic, in cebra.registry
nitpick_ignore = [
("py:class", "module"),
#("py:data", "typing.Union")
Comment thread
stes marked this conversation as resolved.
Outdated
]

nbsphinx_thumbnails = {
Expand Down
Loading