We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94f73e commit a8de70aCopy full SHA for a8de70a
docs/source/conf.py
@@ -7,14 +7,15 @@
7
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8
import os
9
import sys
10
+from importlib.metadata import version as get_version
11
12
sys.path.insert(0, os.path.abspath("../.."))
13
14
15
project = "regularizepsf"
16
copyright = "2023, J. Marcus Hughes and the PUNCH Science Operations Center"
17
author = "J. Marcus Hughes and the PUNCH Science Operations Center"
-release = "0.4.0"
18
+release: str = get_version("regularizepsf")
19
20
# -- General configuration ---------------------------------------------------
21
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
0 commit comments