We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79545cd commit db867a8Copy full SHA for db867a8
doc/conf.py
@@ -54,6 +54,12 @@
54
# The short X.Y version.
55
version = drms.__version__
56
57
+# Read the Docs apparently does not build the documentation in a clean working
58
+# directory, which causes versioneer to return a version that ends with
59
+# ".dirty". As a workaround, we just remove this substring from the version.
60
+if version.endswith('.dirty'):
61
+ version = version[:-6]
62
+
63
# The full version, including alpha/beta/rc tags.
64
release = version
65
0 commit comments