diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 0426b694a..e1a3c10f8 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -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 diff --git a/docs/changelog.rst b/docs/changelog.rst index 5a36d81f3..b80bda59c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 0713578e3..e59a552fd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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), }