Skip to content

Commit f3ab7e4

Browse files
authored
Merge pull request #65 from numpy/web/move-to-sphinx-theme
Initial change to pydata_sphinx_theme
2 parents 6faa0f9 + e018682 commit f3ab7e4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,9 @@ Thumbs.db
105105
##########################
106106
/.pytest_cache
107107

108+
# Poetry lock file #
109+
####################
110+
poetry.lock
111+
108112
# Things specific to this project #
109113
###################################

doc/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'numpy-financial'
23-
copyright = '2019, numpy-financial developers'
23+
copyright = '2023, numpy-financial developers'
2424
author = 'numpy-financial developers'
2525

2626

@@ -32,7 +32,7 @@
3232
extensions = [
3333
'sphinx.ext.autodoc',
3434
'numpydoc',
35-
'sphinx.ext.imgmath',
35+
'sphinx.ext.mathjax',
3636
]
3737

3838
# Add any paths that contain templates here, relative to this directory.
@@ -50,7 +50,7 @@
5050
# The theme to use for HTML and HTML Help pages. See the documentation for
5151
# a list of builtin themes.
5252
#
53-
html_theme = 'bizstyle'
53+
html_theme = 'pydata_sphinx_theme'
5454
html_copy_source = False
5555

5656
# Add any paths that contain custom static files (such as style sheets) here,

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ pytest = "^7.4"
4949
[tool.poetry.group.docs.dependencies]
5050
sphinx = "^7.0"
5151
numpydoc = "^1.5"
52+
pydata-sphinx-theme = "^0.14.3"
5253

5354

5455
[tool.poetry.group.lint.dependencies]

0 commit comments

Comments
 (0)