]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/version.py
move complex typing annotations to extra file
[nominatim.git] / nominatim / version.py
index d4f69da14ff149d57dcec7d77fef82d8360df69e..f950b8efbe734a2c4af9d058dd8caeb72bba4780 100644 (file)
@@ -7,6 +7,7 @@
 """
 Version information for Nominatim.
 """
+from typing import Optional, Tuple
 
 # Version information: major, minor, patch level, database patch level
 #
@@ -33,12 +34,12 @@ POSTGIS_REQUIRED_VERSION = (2, 2)
 # on every execution of 'make'.
 # cmake/tool-installed.tmpl is used to build the binary 'nominatim'. Inside
 # there is a call to set the variable value below.
-GIT_COMMIT_HASH = None
+GIT_COMMIT_HASH : Optional[str] = None
 
 
 # pylint: disable=consider-using-f-string
-def version_str():
+def version_str(version:Tuple[int, int, int, int] = NOMINATIM_VERSION) -> str:
     """
     Return a human-readable string of the version.
     """
-    return '{}.{}.{}-{}'.format(*NOMINATIM_VERSION)
+    return '{}.{}.{}-{}'.format(*version)