Skip to content

Commit

Permalink
Fix Sphinx config issues
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Dec 16, 2024
1 parent 4c1d386 commit ac6da52
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = "Cantera"
copyright = "2023, Cantera Developers"
copyright = "2024, Cantera Developers"
author = "Cantera Developers"
html_title = "Cantera"

Expand All @@ -44,7 +44,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions: list[str] = [
extensions = [
"sphinx_design",
"myst_parser",
"sphinx.ext.duration",
Expand Down Expand Up @@ -75,10 +75,10 @@
language = "en"

intersphinx_mapping = {
'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),
'stable': ('https://cantera.org/stable', None),
'dev': ('https://cantera.org/dev', None),
'ct30': ('https://cantera.org/3.0/sphinx/html', None),
'ct26': ('https://cantera.org/2.6/sphinx/html', None),
}

# -- Options for HTML output -------------------------------------------------
Expand Down

0 comments on commit ac6da52

Please sign in to comment.