From 20b906ffaa98a22b6af7274d5fd29c8b92395174 Mon Sep 17 00:00:00 2001 From: Alex Dubois Date: Wed, 2 Sep 2026 16:19:33 -0500 Subject: [PATCH] Update docs/confi.py to stop inverting version and release --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 8ae7d65..681ca38 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,8 +34,8 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -version = proj_config["project"]["version"] -release = ".".join(version.split(".")[:2]) +release = proj_config["project"]["version"] +version = ".".join(release.split(".")[:2]) description = proj_config["project"]["description"]