Skip to content

Commit

Permalink
Merge pull request #155 from BjornFJohansson/issue_154
Browse files Browse the repository at this point in the history
closes #154
  • Loading branch information
BjornFJohansson authored Nov 15, 2023
2 parents a237d6b + 156f470 commit 5378d6a
Show file tree
Hide file tree
Showing 4 changed files with 408 additions and 2 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,19 @@ or by `pip install scipy matplotlib pillow pyparsing requests cai2 pyqt5`
3. Add the necessary tests in `tests/`.
4. Run the tests from the root directory with `python run_test.py`.

#### Building the documentation locally

Below the commands to run a local sphinx server that auto-updated when files are changed.

```
# Install docs dependency group
poetry install --with docs

# Start the sphinx server to see docs live by default at http://127.0.0.1:8000/
sphinx-autobuild --watch src/ docs docs/_build/html

```
## Releases
See the [releases](https://github.com/BjornFJohansson/pydna/releases) for changes and releases.
Expand Down
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"sphinx.ext.autosummary",
"numpydoc",
"sphinx.ext.intersphinx",
"sphinx_rtd_theme",
]

# Add mappings https://kev.inburke.com/kevin/sphinx-interlinks
Expand All @@ -46,7 +47,7 @@
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "alabaster"
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]

texinfo_documents = [
Expand Down
Loading

0 comments on commit 5378d6a

Please sign in to comment.