Skip to content
Merged
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
8 changes: 7 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ python:
build:
os: "ubuntu-22.04"
tools:
python: "mambaforge-latest"
python: "miniforge3-latest"
jobs:
# hatch-vcs derives the version from git tags; RTD's default checkout is
# shallow and tagless, so fetch tags or ptgp.__version__ falls back to
# 0.0.0+unknown and the version selector labels break.
post_checkout:
- git fetch --tags --unshallow || true
6 changes: 4 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
"sphinx_design",
"sphinx_copybutton",
"sphinx_codeautolink",
"sphinx_sitemap",
"notfound.extension",
"jupyter_sphinx",
"sphinxcontrib.bibtex",
"generate_gallery",
Expand Down Expand Up @@ -133,7 +135,7 @@
"show_prev_next": True,
"icon_links": [
{
"url": "https://github.com/bwengals/ptgp",
"url": "https://github.com/pymc-devs/ptgp",
"icon": "fa-brands fa-github",
"name": "GitHub",
"type": "fontawesome",
Expand All @@ -144,7 +146,7 @@
github_version = version if "." in rtd_version else "main"
html_context = {
"github_url": "https://github.com",
"github_user": "bwengals",
"github_user": "pymc-devs",
"github_repo": "ptgp",
"github_version": github_version,
"doc_path": "docs/source",
Expand Down
Loading