From 3af3f006bac2ccaba783eb60f9be630d4c0c2f06 Mon Sep 17 00:00:00 2001 From: Ryan Gibson Date: Wed, 15 Nov 2023 23:01:08 -0500 Subject: [PATCH] Sync documentation version with setup.py --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index fcaf29c..20b3ad7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,6 +10,7 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # +from importlib.metadata import version import os import sys @@ -26,7 +27,7 @@ author = 'Ryan Gibson' # The full version, including alpha/beta/rc tags -release = '1.3.5' +release = version('modularitypruning') # -- General configuration ---------------------------------------------------