Add __version__ variable for python library (#308)
Build on RHEL9 / build (push) Successful in 2m23s
Build on RHEL8 / build (push) Successful in 3m5s
Run tests using data on local RHEL8 / build (push) Successful in 3m56s
Build on local RHEL8 / build (push) Successful in 2m38s

[PEP 396](https://peps.python.org/pep-0396/)

---------

Co-authored-by: AliceMazzoleni99 <alice.mazzoleni@psi.ch>
This commit is contained in:
2026-05-27 14:38:35 +02:00
committed by GitHub
co-authored by GitHub mazzol_a
parent 41c47cb54b
commit 282debcc94
3 changed files with 10 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
# This file is used to get the version of the package from the VERSION file
from importlib.metadata import PackageNotFoundError, version
from pathlib import Path
try:
__version__ = version('aare')
except PackageNotFoundError:
__version__ = Path(__file__).parents[2].joinpath('VERSION').read_text().strip()