We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bbf581e + ef6718d commit 4961c6cCopy full SHA for 4961c6c
1 file changed
docs/conf.py
@@ -63,10 +63,12 @@ def __getattr__(self, name):
63
# |version| and |release|, also used in various other places throughout the
64
# built documents.
65
#
66
-# The short X.Y version.
67
-version = '2.0'
68
# The full version, including alpha/beta/rc tags.
69
-release = '2.0.1'
+from kazoo import version
+release = version.__version__
+
70
+# The short X.Y version.
71
+version = '.'.join(release.split('.')[:-1])
72
73
# The language for content autogenerated by Sphinx. Refer to documentation
74
# for a list of supported languages.
0 commit comments