Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
]
lbl = os.environ.get("VERSION_LABEL", "")
tgt = os.environ.get("TARGET_FOLDER", "")
if lbl and lbl not in ("dev",) and tgt:
if lbl and lbl not in ("dev", "next") and tgt:
pinned.insert(1, {"label": lbl, "path": tgt.rstrip("/") + "/"})
p.write_text(json.dumps(pinned, indent=2) + "\n")
PY
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ Changelog
Enhancements
++++++++++++
- (:pr:`386`) Set up documentation build to store versions of documentation for each tag plus dev.
Note that this changes intersphinx links. Below is current.

.. code:: python

"qcelemental": ("https://molssi.github.io/QCElemental/dev/", None),
"qcengine": ("https://molssi.github.io/QCEngine/dev/", None),
"qcfractal": ("https://molssi.github.io/QCFractal/", None),


0.30.1 / 2026-02-10
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def setup(app):
"numpy": ("https://numpy.org/doc/stable/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
"matplotlib": ("https://matplotlib.org/stable/", None),
"qcengine": ("https://molssi.github.io/QCEngine/", None),
"qcengine": ("https://molssi.github.io/QCEngine/dev/", None),
"qcfractal": ("https://molssi.github.io/QCFractal/", None),
"nglview": ("https://nglviewer.org/nglview/release/v2.7.7", None),
}
Expand Down
Loading