Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug when building docs #353

Merged
merged 1 commit into from
Mar 1, 2024
Merged
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
Fix bug when building docs
- add numpydoc to sphinx extensions
- add numpydoc to docs requirements.txt
  • Loading branch information
Manuel authored and Manuel committed Feb 19, 2024
commit 22a7d57724f14a59444a0f40792fa7596a3be180
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sphinx==7.2.5
sphinx_rtd_theme==2.0.0
regex
numpydoc==1.6.0
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -56,7 +56,8 @@
'sphinx.ext.coverage',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
'sphinx.ext.imgconverter'
'sphinx.ext.imgconverter',
'numpydoc',
]

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