graphtage.version¶
A module that centralizes the version information for Graphtage.
Changing the version here not only affects the version printed with the --version command line option, but it also
automatically updates the version used in setup.py and rendered in the documentation.
-
graphtage.version.DEV_BUILD¶ Sets whether this build is a development build. This should only be set to
Trueto coincide with a release. It should always beTruebefore deploying to PyPI.If
False, the git branch will be included ingraphtage.version.__version__.- Type
-
__version_\_ The version of Graphtage. This tuple can contain any sequence of ints and strings. Typically this will be three ints: major/minor/revision number. However, it can contain additional ints and strings. If
graphtage.version.DEV_BUILD, then (“git”, git_branch()) will be appended to the version.