Skip to content

Commit

Permalink
Fix issue with automatic version detection in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
g-kimbell committed Jun 5, 2024
1 parent 63fe97d commit 802b17e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aurora/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
An AiiDAlab application for the Aurora BIG-MAP Stakeholder initiative.
"""

__version__ = "0.12.2"
__version__ = "0.12.3"
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [email protected]
description = An AiiDAlab application for the Aurora BIG-MAP Stakeholder initiative.
Expand Down

0 comments on commit 802b17e

Please sign in to comment.