From b137e7f8adab6c20b5a04cc17578692ef450595a Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 11 Dec 2024 19:21:59 -0500 Subject: [PATCH] Read intersphinx inventories from cantera.org --- source/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/conf.py b/source/conf.py index 370739c3..0dfaf2eb 100644 --- a/source/conf.py +++ b/source/conf.py @@ -75,10 +75,10 @@ language = "en" intersphinx_mapping = { - 'stable': ('/stable', '../dev-docs/objects.inv'), - 'dev': ('/dev', '../dev-docs/objects.inv'), - 'ct30': ('/3.0', '../api-docs/docs-3.0/sphinx/html/objects.inv'), - 'ct26': ('/2.6', '../api-docs/docs-2.6/sphinx/html/objects.inv'), + 'stable': ('https://testing.cantera.org/stable', None), + 'dev': ('https://testing.cantera.org/dev', None), + 'ct30': ('https://testing.cantera.org/3.0/sphinx/html', None), + 'ct26': ('https://testing.cantera.org/2.6/sphinx/html', None), } # -- Options for HTML output -------------------------------------------------