Skip to content

Commit 3736113

Browse files
authored
Fix Sphinx build (#127)
Read The Docs was able to build fine, but our own Makefile was not actually working due to a missing `_static` directory. This also updates the Intersphinx mappings since they have changed, and the old configuration was generating warnings.
1 parent f07ad1a commit 3736113

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/_static/.keep

Whitespace-only changes.

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@
8181
intersphinx_mapping = {
8282
'python': ('https://docs.python.org/3/', None),
8383
'numpy': ('https://numpy.org/doc/stable/', None),
84-
'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
84+
'scipy': ('https://docs.scipy.org/doc/scipy/', None),
8585
'pandas': ('https://pandas.pydata.org/pandas-docs/stable', None),
86-
'matplotlib': ('https://matplotlib.org', None),
86+
'matplotlib': ('https://matplotlib.org/stable/', None),
8787
}
8888

8989

0 commit comments

Comments
 (0)