From 511d738c45004876eb2040f63903153d30e34d43 Mon Sep 17 00:00:00 2001 From: Hari Date: Wed, 28 Feb 2024 13:08:43 +0100 Subject: [PATCH] Added intersphinx, version bumped --- docs/conf.py | 10 ++++++++++ voxelgym2D/version.txt | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index abd10ce..f0f9a43 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,6 +38,7 @@ "sphinx.ext.inheritance_diagram", # for inheritance diagrams "sphinx.ext.graphviz", # for graphviz "sphinx.ext.mathjax", # for math + "sphinx.ext.intersphinx", # for intersphinx "sphinx_autodoc_typehints", # for type hints "sphinx_copybutton", # for copy button "sphinx-prompt", # for prompt @@ -74,6 +75,15 @@ exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"] +# Intersphinx configuration +intersphinx_mapping = { + "python": ("https://docs.python.org/3", None), + "numpy": ("https://numpy.org/doc/stable/", None), + "matplotlib": ("https://matplotlib.org/stable", None), + "gymnasium": ("https://gymnasium.farama.org/", None), + "scikit-image": ("https://scikit-image.org/docs/stable/", None), +} + # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output diff --git a/voxelgym2D/version.txt b/voxelgym2D/version.txt index 9fc80f9..9e9da8e 100644 --- a/voxelgym2D/version.txt +++ b/voxelgym2D/version.txt @@ -1 +1 @@ -0.3.2 \ No newline at end of file +0.3.2.post1 \ No newline at end of file