From 802b17e9bef5486048ad4f305415a538246e9dcc Mon Sep 17 00:00:00 2001 From: g-kimbell Date: Wed, 5 Jun 2024 13:38:37 +0000 Subject: [PATCH] Fix issue with automatic version detection in docs --- aurora/__init__.py | 2 +- docs/source/conf.py | 5 +++-- setup.cfg | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/aurora/__init__.py b/aurora/__init__.py index fcd45b4..e9b5b20 100644 --- a/aurora/__init__.py +++ b/aurora/__init__.py @@ -5,4 +5,4 @@ An AiiDAlab application for the Aurora BIG-MAP Stakeholder initiative. """ -__version__ = "0.12.2" +__version__ = "0.12.3" diff --git a/docs/source/conf.py b/docs/source/conf.py index 3e7252b..3eb8044 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,14 +6,15 @@ # -- Imports ----------------------------------------------------------------- import time -from aurora import __version__ + +# from aurora import __version__ # TODO RTD can't find it. Resolve! # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = "AiiDAlab-Aurora" author = "Edan Bainglass" -release = __version__ +release = "0.12.3" # TODO change to __version__ when RTD can find it copyright_first_year = "2021" diff --git a/setup.cfg b/setup.cfg index 5c8c5b9..1de26bf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ title = Aurora [metadata] name = aurora -version = 0.12.2 +version = 0.12.3 author = Edan Bainglass, Francisco F. Ramirez, Loris Ercole, Giovanni Pizzi author_email = edan.bainglass@psi.ch description = An AiiDAlab application for the Aurora BIG-MAP Stakeholder initiative.