Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit

Permalink
use active version in conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
granawkins committed Jan 19, 2024
1 parent 0d7218c commit 542f160
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@
import os
import sys

# AXJ, Version
sys.path.insert(0, os.path.abspath("../.."))
from mentat import __version__

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "Mentat"
copyright = "2024, Abante AI"
author = "Multiple Authors"
release = "1.0.7"
release = __version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand All @@ -36,7 +40,3 @@

html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]


# AXJ
sys.path.insert(0, os.path.abspath("../.."))

0 comments on commit 542f160

Please sign in to comment.