Skip to content

Commit

Permalink
Advertise mdakits (#4297)
Browse files Browse the repository at this point in the history
* advertise mdakits
* add heading
* transfer deps to conda
  • Loading branch information
lilyminium authored Sep 22, 2023
1 parent f0fb7a0 commit 427f1a7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ jobs:
with:
micromamba: true
full-deps: true
extra-pip-deps: "docutils sphinx<7 sphinx-sitemap mdanalysis-sphinx-theme>=1.0.1 sphinxcontrib-bibtex pybtex pybtex-docutils"
extra-pip-deps: "docutils sphinx-sitemap sphinxcontrib-bibtex pybtex pybtex-docutils"
extra-conda-deps: "mdanalysis-sphinx-theme>=1.3.0"

- name: build_srcs
uses: ./.github/actions/build-src
Expand Down
2 changes: 1 addition & 1 deletion maintainer/conda/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- h5py>=2.10
- hypothesis
- joblib>=0.12
- mdanalysis-sphinx-theme >=1.0.1
- mdanalysis-sphinx-theme >=1.3.0
- matplotlib>=3.2.2
- mmtf-python
- mock
Expand Down
1 change: 1 addition & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Fixes
* Fixes hydrogenbonds tutorial path to point to hbonds (Issue #4285, PR #4286)

Enhancements
* Adds external sidebar links (Issue #4296)
* Updated lib.qcprot.CalcRMSDRotationalMatrix to accept either float32 or float64
inputs (PR #4273, part of #3927)
* Added a warning about charge neutrality to the documentation of
Expand Down
7 changes: 7 additions & 0 deletions package/doc/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,15 @@ class KeyStyle(UnsrtStyle):
# a list of builtin themes.
html_theme = 'mdanalysis_sphinx_theme'

extra_nav_links = {}
extra_nav_links["MDAnalysis"] = "http://mdanalysis.org"
extra_nav_links["User guide"] = "http://userguide.mdanalysis.org"
extra_nav_links["MDAKits"] = "https://mdakits.mdanalysis.org/"


html_theme_options = {
"mda_official": True,
"extra_nav_links": extra_nav_links,
}

# Theme options are theme-specific and customize the look and feel of a theme
Expand Down
1 change: 1 addition & 0 deletions package/doc/sphinx/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ Thank you!
.. toctree::
:maxdepth: 4
:caption: Documentation
:numbered:
:hidden:

Expand Down
2 changes: 1 addition & 1 deletion package/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ analysis = [
doc = [
"sphinx",
"sphinx-sitemap",
"mdanalysis-sphinx-theme",
"mdanalysis-sphinx-theme>=1.3.0",
"sphinxcontrib-bibtex",
"pybtex",
"pybtex-docutils",
Expand Down

0 comments on commit 427f1a7

Please sign in to comment.