-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from danielward27/multiple_ndim
Multiple ndim
- Loading branch information
Showing
39 changed files
with
1,312 additions
and
1,052 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,49 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
import sys | ||
import os | ||
sys.path.insert(0, os.path.abspath('..')) | ||
|
||
sys.path.insert(0, os.path.abspath("..")) | ||
|
||
# For the full list of built-in configuration values, see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
project = 'FlowJax' | ||
copyright = '2022, Daniel Ward' | ||
author = 'Daniel Ward' | ||
release = 'v6.1.0' | ||
project = "FlowJax" | ||
copyright = "2022, Daniel Ward" | ||
author = "Daniel Ward" | ||
release = "v7.0.0" | ||
|
||
# -- General configuration --------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | ||
|
||
extensions = [ | ||
"sphinx.ext.todo", "sphinx.ext.viewcode", "sphinx.ext.autodoc", | ||
"sphinx.ext.napoleon", "sphinx.ext.doctest", "nbsphinx", "sphinx_copybutton" | ||
"sphinx.ext.viewcode", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.napoleon", | ||
"sphinx.ext.doctest", | ||
"nbsphinx", | ||
"sphinx_copybutton", | ||
] | ||
|
||
templates_path = ['_templates'] | ||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] | ||
templates_path = ["_templates"] | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
add_module_names = False | ||
napoleon_include_init_with_doc = True | ||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | ||
|
||
html_theme = 'sphinx_rtd_theme' | ||
html_static_path = ['_static'] | ||
html_theme = "sphinx_rtd_theme" | ||
html_static_path = ["_static"] | ||
|
||
html_css_files = [ | ||
'style.css', | ||
"style.css", | ||
] | ||
|
||
napoleon_include_init_with_doc = True | ||
|
||
html_theme_options = { | ||
'navigation_depth': 2, | ||
#'logo_only': True, | ||
"navigation_depth": 2, | ||
} | ||
|
||
# html_logo = "../images/flowjax_logo.png" |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""flowjax - Basic flowjax implementation in jax.""" | ||
|
||
__version__ = "6.1.0" | ||
__version__ = "7.0.0" | ||
__author__ = "Daniel Ward <danielward27@outlook.com>" | ||
__all__ = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.