diff --git a/.gitignore b/.gitignore index 1ccdafb..e03204a 100644 --- a/.gitignore +++ b/.gitignore @@ -105,5 +105,9 @@ Thumbs.db ########################## /.pytest_cache +# Poetry lock file # +#################### +poetry.lock + # Things specific to this project # ################################### diff --git a/doc/source/conf.py b/doc/source/conf.py index abc1a48..da27bcf 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -20,7 +20,7 @@ # -- Project information ----------------------------------------------------- project = 'numpy-financial' -copyright = '2019, numpy-financial developers' +copyright = '2023, numpy-financial developers' author = 'numpy-financial developers' @@ -32,7 +32,7 @@ extensions = [ 'sphinx.ext.autodoc', 'numpydoc', - 'sphinx.ext.imgmath', + 'sphinx.ext.mathjax', ] # Add any paths that contain templates here, relative to this directory. @@ -50,7 +50,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'bizstyle' +html_theme = 'pydata_sphinx_theme' html_copy_source = False # Add any paths that contain custom static files (such as style sheets) here, diff --git a/pyproject.toml b/pyproject.toml index c7bd3ad..6e17759 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,7 @@ pytest = "^7.4" [tool.poetry.group.docs.dependencies] sphinx = "^7.0" numpydoc = "^1.5" +pydata-sphinx-theme = "^0.14.3" [tool.poetry.group.lint.dependencies]